Bump tokio from 1.39.3 to 1.40.0 #526
Workflow file for this run
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: Cargo checks | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
cargo-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: setup rust toolchain | |
run: rustup show | |
- name: install rust toolchain components | |
run: rustup component add rustfmt clippy | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
- name: Clippy | |
run: cargo clippy --all | |
- name: build docker image | |
run: docker build docker -t ponylang-playpen | |
- name: Cargo test | |
run: cargo test --all -- --nocapture | |