diff options
| -rw-r--r-- | .github/workflows/ubuntu.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 0000000..cef75ed --- /dev/null +++ b/.github/workflows/ubuntu.yml | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | name: Ubuntu | ||
| 2 | |||
| 3 | on: | ||
| 4 | push: | ||
| 5 | branches: [ master ] | ||
| 6 | pull_request: | ||
| 7 | branches: [ master ] | ||
| 8 | workflow_dispatch: | ||
| 9 | |||
| 10 | jobs: | ||
| 11 | build: | ||
| 12 | name: Build & Test | ||
| 13 | runs-on: ubuntu-latest | ||
| 14 | steps: | ||
| 15 | - uses: actions/checkout@v1 | ||
| 16 | - name: build-test | ||
| 17 | run: make test | ||
