Fix repo check #210
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: verus | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'CONTRIBUTING.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install latest rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
default: true | |
override: true | |
- name: test syntax | |
run: cargo test --package syntax --lib | |
# TODO: test all proof action | |
# TODO: env variable for verus_fmt, verus | |
# - name: test proof action | |
# run: cargo test --package ide-assists --lib -- handlers::proof_action::wp_move_assertion::tests::wp_lemma_call --exact --nocapture | |
#- name: build default | |
# run: cargo xtask dist | |
- name: build proof action version | |
run: cargo xtask dist --proof-action | |
# TODO: more test | |
# TODO: auto-merge upstream | |
# TODO: add CI to test parsing on example/syntax.rs file from verus repo |