Feat: ExitFee in percentage logic move to contract. #296
Workflow file for this run
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: Unit & Integration tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Docker images | |
run: docker compose -f docker-compose.test.base.yml -f docker-compose.test.reg.yml -f docker-compose.test.par.yml build | |
- uses: actions/checkout@v3 | |
- name: Run unit & integration tests | |
run: docker compose -f docker-compose.test.base.yml -f docker-compose.test.reg.yml up --abort-on-container-exit | |
- uses: actions/checkout@v3 | |
- name: Run parallel tests | |
run: docker container prune -f && docker volume prune -f && docker compose -f docker-compose.test.base.yml -f docker-compose.test.par.yml up --abort-on-container-exit |