Bump slothy from 5b4c09a
to 7e929e4
#39
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: Tests | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
include: | |
- system: ubuntu-latest | |
target: cross-v8a | |
- system: ubuntu-latest | |
target: cross-v84a | |
- system: macos-latest | |
target: native-mac | |
runs-on: ${{ matrix.system }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: install dependencies | |
if: ${{ matrix.system == 'ubuntu-latest' }} | |
run: sudo apt install gcc-aarch64-linux-gnu qemu-user | |
- name: Run tests | |
run: | | |
make runall-${{ matrix.target }} |