Bump slothy from 112dabc to 1c83e0a
#100
Workflow file for this run
This file contains hidden or 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: update apt | |
| if: ${{ matrix.system == 'ubuntu-latest' }} | |
| run: sudo apt update | |
| - 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 }} |