Skip to content

added ci

added ci #1

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
rustfmt:
name: Check rustfmt
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v2
- run: cargo fmt --all -- --check
test:
name: Run linter
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
env:
RUSTFLAGS: -D warnings
RUSTDOCFLAGS: -D warnings
steps:
- name: Checkout
uses: actions/checkout@v4
- name: clippy
run: cargo clippy
- name: test
run: cargo test