Added some support for case split conclusions in rebuild #35
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: CI | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ dev, master ] | |
pull_request: | |
branches: [ dev, master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Setup Clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install graphviz | |
run: sudo apt-get update && sudo apt-get install graphviz | |
- name: Install cargo deadlinks | |
run: which cargo-deadlinks || cargo install cargo-deadlinks | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
toolchain: stable | |
- name: Test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
toolchain: stable |