Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Arrowana committed Aug 19, 2024
0 parents commit 1e2cf3c
Show file tree
Hide file tree
Showing 8 changed files with 1,593 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.75.0
components: clippy, rustfmt
# Cargo build cache
- name: Cache
uses: Swatinem/rust-cache@v2
- run: cargo build --locked
- run: cargo fmt --check
- run: cargo clippy -- -D warnings
- run: cargo test -- --nocapture
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 1e2cf3c

Please sign in to comment.