diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-03-28 12:35:37 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-03-28 12:35:37 +0000 |
| commit | 4b06b2bd70d37656d727c8fffc0656c1aa3c7b97 (patch) | |
| tree | 1d885fdef21a7530c1a91f848788a665d6fc9948 /.github/workflows/clippy_rustfmt_test.yaml | |
| parent | 91a68de459b7d22a8dfb8a324e43740fca3e0a35 (diff) | |
| parent | 11dc9fa2d8b82594d3803f12d2c5a49e57026cfb (diff) | |
Merge upgrade rust-nostr v0.29
refactor to address breaking changes in rust-nostr
fix a number of in dependancy which have been upstreamed
Diffstat (limited to '.github/workflows/clippy_rustfmt_test.yaml')
| -rw-r--r-- | .github/workflows/clippy_rustfmt_test.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/clippy_rustfmt_test.yaml b/.github/workflows/clippy_rustfmt_test.yaml new file mode 100644 index 0000000..5253814 --- /dev/null +++ b/.github/workflows/clippy_rustfmt_test.yaml | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | on: push | ||
| 2 | |||
| 3 | name: build test | ||
| 4 | |||
| 5 | jobs: | ||
| 6 | ci: | ||
| 7 | runs-on: ubuntu-latest | ||
| 8 | timeout-minutes: 8 | ||
| 9 | steps: | ||
| 10 | - uses: actions/checkout@v3 | ||
| 11 | - uses: cachix/install-nix-action@v22 | ||
| 12 | with: | ||
| 13 | nix_path: nixpkgs=channel:nixos-unstable | ||
| 14 | - run: nix develop --command cargo clippy | ||
| 15 | - run: nix develop --command cargo fmt --all -- --check | ||
| 16 | - run: nix develop --command cargo test | ||