* Fix rendering #169
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: CI | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
name: Style Checks | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Style | |
run: | | |
cargo fmt --check | |
cargo clippy -- -Dclippy::all | |
test: | |
runs-on: ubuntu-latest | |
name: Test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Run | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-east-1 | |
run: | | |
cargo run -- sync --tool=miri --bucket=miri-bot-dev | |
cargo run -- run --tool=miri --bucket=miri-bot-dev --crate-list=ci-crates | |
cargo run -- sync --tool=asan --bucket=miri-bot-dev | |
cargo run -- run --tool=asan --bucket=miri-bot-dev --crate-list=ci-crates | |
cargo run -- sync --tool=build --bucket=miri-bot-dev | |
cargo run -- run --tool=build --bucket=miri-bot-dev --crate-list=ci-crates |