Skip to content

Commit

Permalink
Add CI/CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Notgnoshi committed Mar 9, 2024
1 parent 235dd34 commit 3706868
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Lint
on: [push]
env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always

jobs:
gitlint:
runs-on: ubuntu-latest
steps:
- name: Lint Git commits
# TODO: This doesn't let you setup custom rules. For example, I like to allow the
# max-line length rule to be violated, if it's an indented blockquote (code block, log
# snippet), or if it looks like a URL or footnote.
# Maybe just shell out to gitlint, and save custom rules here in the repo?
uses: aschbacd/gitlint-action@v1
with:
commit-message-body-max-length: 80

format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Setup Rust cache
uses: swatinem/rust-cache@v2
- name: Run rustfmt
run: cargo fmt -- --check --config group_imports=StdExternalCrate,imports_granularity=Module

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Setup Rust cache
uses: swatinem/rust-cache@v2
- name: Build
run: cargo build --release --all-targets
- name: Clippy
run: cargo clippy --release --all-targets

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Setup Rust cache
uses: swatinem/rust-cache@v2
- name: Test
run: cargo test --release --all-targets

0 comments on commit 3706868

Please sign in to comment.