Skip to content

build(deps): bump actions/checkout from 3 to 4 #195

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #195

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt && git diff --exit-code
- name: Lint
run: |
rustup update
rustup component add clippy
cargo clippy -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Test
run: cargo test