test against svd2rust output #20
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 edc2svd | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
ci-regtest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
buildtype: ["", --release] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update stable && rustup default stable | |
- run: cargo install [email protected] | |
- run: cargo build ${{ matrix.buildtype }} | |
- run: ./test.sh | |
working-directory: ./ci/regtest |