forked from cashubtc/cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.25 KB
/
nutshell_itest.yml
File metadata and controls
41 lines (38 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Nutshell integration
on: [push, pull_request]
jobs:
nutshell-integration-tests:
name: Nutshell Mint Integration Tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v17
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Test Nutshell
run: nix develop -i -L .#integration --command just test-nutshell
- name: Show logs if tests fail
if: failure()
run: docker logs nutshell
nutshell-wallet-integration-tests:
name: Nutshell Wallet Integration Tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: checkout
uses: actions/checkout@v4
- name: Pull Nutshell Docker image
run: docker pull cashubtc/nutshell:latest
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v17
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Test Nutshell Wallet
run: |
nix develop -i -L .#integration --command just nutshell-wallet-itest
- name: Show Docker logs if tests fail
if: failure()
run: docker logs nutshell-wallet || true