Skip to content

build(deps): bump actions/checkout from 2 to 3 (#13) #190

build(deps): bump actions/checkout from 2 to 3 (#13)

build(deps): bump actions/checkout from 2 to 3 (#13) #190

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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@v3
- name: Build
run: cargo build
- name: Test
run: cargo test