Fix local running #5
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
on: | |
push: | |
branches: [ "dev" ] | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setting up environment variables | |
run: | | |
cp base.env .env | |
echo "MODE=TEST" >> .env | |
echo "DATA_PATH=./data" >> .env | |
- name: Running tests inside the container | |
run: make run-test |