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/build_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/build_test.yaml')
| -rw-r--r-- | .github/workflows/build_test.yaml | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/build_test.yaml b/.github/workflows/build_test.yaml deleted file mode 100644 index 5d2555d..0000000 --- a/.github/workflows/build_test.yaml +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | on: push | ||
| 2 | |||
| 3 | name: build test | ||
| 4 | |||
| 5 | jobs: | ||
| 6 | ci: | ||
| 7 | runs-on: ubuntu-latest | ||
| 8 | timeout-minutes: 8 | ||
| 9 | strategy: | ||
| 10 | matrix: | ||
| 11 | rust: | ||
| 12 | - stable | ||
| 13 | - nightly | ||
| 14 | |||
| 15 | steps: | ||
| 16 | - uses: actions/checkout@v2 | ||
| 17 | |||
| 18 | - uses: actions-rs/toolchain@v1 | ||
| 19 | with: | ||
| 20 | profile: minimal | ||
| 21 | toolchain: ${{ matrix.rust }} | ||
| 22 | override: true | ||
| 23 | |||
| 24 | - uses: actions-rs/cargo@v1 | ||
| 25 | with: | ||
| 26 | command: build | ||
| 27 | |||
| 28 | - uses: actions-rs/cargo@v1 | ||
| 29 | with: | ||
| 30 | command: test | ||