Update Rust crate tokio to v1.43.0 (#49) #332
This file contains hidden or 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 Checks" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Ensure rustfmt is installed and setup problem matcher | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: rustfmt | |
- name: Rustfmt Check | |
uses: actions-rust-lang/rustfmt@v1 | |
- name: Run Clippy | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
run: cargo clippy | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- run: cargo test --all-features | |
env: | |
S3_ACCESS_KEY: some-access-key | |
S3_SECRET_KEY: some-secret-key | |
S3_REGION: eu-central-1 | |
S3_BUCKET_NAME: turbo | |
S3_ENDPOINT: "http://localhost:9000" |