chore: bump dependency versions and move to Rust 1.80 (#47) #364
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: moonrepo/setup-rust@v1 | |
with: | |
components: rustfmt, clippy | |
- uses: pre-commit/action@v2.0.0 | |
with: | |
extra_args: --all-files | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: moonrepo/setup-rust@v1 | |
- run: cargo test --all | |
compat-integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: moonrepo/setup-rust@v1 | |
with: | |
cache-target: release | |
- run: cargo install --path crates/cargo-codspeed --locked | |
- run: cargo codspeed build -p codspeed | |
- run: cargo codspeed build -p codspeed-bencher-compat | |
- run: cargo codspeed build --features async_futures -p codspeed-criterion-compat | |
- name: Run the benchmarks | |
uses: CodSpeedHQ/action@main | |
with: | |
run: cargo codspeed run | |
token: ${{ secrets.CODSPEED_TOKEN }} |