feat: limit pr
branch names to 60 chars
#188
This file contains 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
on: push | |
name: build test | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- run: nix develop --command cargo clippy | |
- run: nix develop --command cargo fmt --all -- --check | |
- run: nix develop --command cargo test |