feat: set as homepage #7
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: Pytest | |
on: [push] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'skip-ci')" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.6 | |
- name: Run pytest | |
run: docker compose -f compose.tests.yaml up --exit-code-from tests |