Merge pull request #176 from Fi3/sv2-tp-crates #13
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
on: | |
push: | |
branches: [ sv2-tp-crates ] | |
pull_request: | |
brances: [ sv2-tp-crates ] | |
# Run all tests by executing the ./test.sh script | |
name: Test | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run tests for all crates by executing ./test.sh | |
run: | | |
echo Run tests for all crates by executing ./test.sh | |
sh ./test.sh |