Skip to content

Commit

Permalink
Start GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
Levilutz committed Nov 29, 2024
1 parent 122b7a1 commit 7a4ff7e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --check
- name: Check
run: cargo check
- name: Clippy
run: cargo clippy

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Doc test
run: cargo test --doc

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build

0 comments on commit 7a4ff7e

Please sign in to comment.