Added files pylint, integration tests, CI, workflow #592
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: Integration Tests | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
integration-tests: | ||
uses: ./.github/workflows/test_workflow.yml | ||
Check failure on line 13 in .github/workflows/integration-tests.yml GitHub Actions / Integration TestsInvalid workflow file
|
||
with: | ||
steps_override: | | ||
- name: Create .env file | ||
run: | | ||
cat << EOF > .env | ||
DB_USER=postgres | ||
DB_PASSWORD=password | ||
... | ||
EOF | ||
- name: Run Integration Tests | ||
run: | | ||
docker-compose exec backend pytest tests/integration/ |