diff options
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r-- | .github/workflows/macos.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..2ebd53d --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,26 @@ +name: "macOS" + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + macos-11: + name: Test macOS + runs-on: macos-latest + steps: + - name: Install dependencies 🔧 + run: brew install imagemagick jhead + + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Get assert.sh 🎁 + run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh + + - name: Test 🛠️ + run: bash test.sh
\ No newline at end of file |