Skip to content

chore(deps): update actions/checkout action to v4 #83

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #83

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
- uses: actions-rs/cargo@v1
with:
command: clippy
- uses: actions-rs/cargo@v1
with:
command: test