0.4.9 #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- if: startsWith(matrix.os, 'macos') | |
run: brew install bash | |
- run: | |
git config --global user.email "you@example.com"; | |
git config --global user.name "Your Name"; | |
git config --global init.defaultBranch "master"; | |
git config --global --add safe.directory "$PWD"; | |
git config --global --add safe.directory "$PWD.git"; | |
- if: startsWith(matrix.os, 'macos') | |
run: make test | |
- if: startsWith(matrix.os, 'ubuntu') | |
run: make docker-tests |