CI: create accessible wallet for unit tests #189
Workflow file for this run
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: Build and Test | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Initialize and update submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Run integration tests | |
run: docker compose -f BTCPayServer.Plugins.IntegrationTests/docker-compose.yml run tests | |
- name: Cleanup Docker containers | |
if: always() | |
run: docker compose -f BTCPayServer.Plugins.IntegrationTests/docker-compose.yml down -v |