8000 Bump toml from 0.8.21 to 0.8.22 · l0s/advent-of-code-rust@7164372 · GitHub
[go: up one dir, main page]

Skip to content

Bump toml from 0.8.21 to 0.8.22 #481

Bump toml from 0.8.21 to 0.8.22

Bump toml from 0.8.21 to 0.8.22 #481

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
target/
key: cargo-${{ runner.os }}-${{ hashFiles( '**/Cargo.lock' ) }}
restore-keys: |
cargo-${{ runner.os }}-
cargo-
- name: Build
run: cargo build --locked --verbose
- name: Lint
run: cargo clippy
- name: Run tests
run: cargo test --verbose
0