Skip to content

Commit 4720ba7

Browse files
authored
Add github action: unixish CI (cppcheck-opensource#189)
1 parent 1bc600b commit 4720ba7

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/CI-unixish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI Unixish
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
strategy:
9+
matrix:
10+
os: [ubuntu-latest, macos-latest]
11+
fail-fast: false # not worthwhile...
12+
13+
runs-on: ${{ matrix.os }}
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: make simplecpp
18+
run: make
19+
- name: make test
20+
run: make test

0 commit comments

Comments
 (0)