Merge pull request #647 from egraphs-good/ajpal-fix-cfgs #4179
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 | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- run: sudo apt install graphviz | |
- run: ./install_ubuntu.sh | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install cargo-insta | |
- run: make runtime | |
- run: make test | |
nits: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- run: ./install_ubuntu.sh | |
- uses: Swatinem/rust-cache@v2 | |
- run: make nits | |