Skip to content

Commit

Permalink
Stage 2
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Jun 13, 2024
1 parent 3057c2f commit 571c47d
Show file tree
Hide file tree
Showing 35 changed files with 1,239 additions and 844 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ jobs:
args: --workspace --all-features --all-targets --locked
- name: Cargo fmt
if: matrix.action == 'fmt'
run: cargo fmt --all -- --check
run: |
rustup toolchain install nightly
rustup component add rustfmt --toolchain nightly
cargo +nightly fmt --all -- --check
- name: Install cargo-nextest
if: matrix.action == 'nextest'
uses: taiki-e/install-action@nextest
Expand Down
9 changes: 3 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@
.DS_Store

# Integrated development environment
.idea
.fleet
.vscode

# Package manager
## Cargo
target
## mdBook
book
index.html
## NPM
node_modules

# Test data
nohup.out
tmp
Loading

0 comments on commit 571c47d

Please sign in to comment.