LNPay Core Alpha #257
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
name: lnpay-build-test-workflow | |
on: [push,pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the stack | |
run: bash docker.sh build | |
- name: Build codecept | |
run: docker exec lnpay-php vendor/bin/codecept build | |
- name: Run API Tests | |
run: docker exec lnpay-php vendor/bin/codecept run -g base_api -vvv | |
- name: Run unit,functional Tests | |
run: docker exec lnpay-php vendor/bin/codecept run unit,functional |