Rename action

This commit is contained in:
amai2012
2020-04-23 14:57:35 +02:00
committed by GitHub
parent 064d90da13
commit eefc07a739

20
.github/workflows/ci-unixish.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: C/C++ CI Unixish
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: make
run: make
- name: make check
run: make check
- name: Install
run: sudo make install