Update Ark and Nitro dependencies to latest versions #71
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Server CI | |
on: | |
pull_request: | |
paths: | |
- "server/**" | |
- "scripts/**" | |
- "Cargo.toml" | |
- "Cargo.lock" | |
- ".github/workflows/server.yml" | |
push: | |
branches: | |
- master | |
paths: | |
- "server/**" | |
- "scripts/**" | |
- "Cargo.toml" | |
- "Cargo.lock" | |
- ".github/workflows/server.yml" | |
jobs: | |
server_build_and_test: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- name: ✨ Check formatting | |
run: nix develop .#server --command bash -c "cargo fmt --check" | |
- name: 🧪 Run tests | |
run: nix develop .#server --command bash -c "cargo test" |