We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 797e0bc commit 3030595Copy full SHA for 3030595
.github/workflows/main.yml
@@ -22,6 +22,19 @@ jobs:
22
docker build -f Dockerfile.${{ matrix.flavor }} -t profanity .
23
docker run profanity ./ci-build.sh
24
25
+ macos:
26
+ runs-on: macos-latest
27
+ name: macOS
28
+ steps:
29
+ - uses: actions/checkout@v2
30
+ - name: Run brew bundle
31
+ run: brew bundle
32
+ - name: Run tests
33
+ env:
34
+ # Ensure that "keg-only" Homebrew versions are used.
35
+ PKG_CONFIG_PATH: "/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/expat/lib/pkgconfig:/usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/libffi/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig:$PKG_CONFIG_PATH"
36
+ run: ./ci-build.sh
37
+
38
code-style:
39
runs-on: ubuntu-22.04
40
name: Check coding style
0 commit comments