Merge pull request #332 from makerspace/db/discount-coupon-query-less #449
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: Build and run tests for makeradmin | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install prerequisites | |
run: | | |
sudo apt install -y python3-pip | |
pip3 install docker-compose | |
- name: List versions | |
run: | | |
docker --version | |
docker-compose --version | |
- uses: actions/checkout@v2 | |
- name: Build docker | |
run: make build | |
- name: Run tests | |
run: make test |