diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-03-26 21:32:55 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-03-28 10:38:50 -0400 |
commit | f9c18e80595fae26f1d45dab5427c7122d15cb35 (patch) | |
tree | 65aab4bb54b4fd228dcbd2fd2a773ad612621417 /.github/workflows/macos.yml | |
parent | d36ece2ca7498b7ba5485d5010439b57f006c9c8 (diff) | |
download | bfs-f9c18e80595fae26f1d45dab5427c7122d15cb35.tar.xz |
ci: Switch to GitHub Actions
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r-- | .github/workflows/macos.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..ab359e1 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,14 @@ +name: macOS + +on: [push, pull_request] + +jobs: + build: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + + - name: Run tests + run: | + make -j$(sysctl -n hw.ncpu) distcheck |