update actions #11
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: testsuite | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
testsuite: | |
runs-on: ubuntu-latest | |
container: ghdl/ghdl:ubuntu20-llvm-10 | |
steps: | |
- name: Update git # manually, until git >= 2.18 is available in the container | |
run: apt update && apt install --yes git | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup BATS | |
uses: mig4/setup-bats@v1 | |
with: | |
bats-version: 1.2.1 | |
- name: Run tests | |
run: cd sim && timeout 10m bats tests.bats |