Add German translation courtesy of SusurrusNights #336
This file contains hidden or 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: tests | |
| on: | |
| # Run on push to main | |
| push: | |
| paths: | |
| - 'notifier/**' | |
| - 'tests/**' | |
| - 'config/**' | |
| - 'pyproject.toml' | |
| - 'config/config.toml' | |
| - '.github/workflows/tests.yml' | |
| branches: [ main ] | |
| # Run on PR | |
| pull_request: | |
| paths: | |
| - 'notifier/**' | |
| - 'tests/**' | |
| - 'config/**' | |
| - 'pyproject.toml' | |
| - 'config/config.toml' | |
| - '.github/workflows/tests.yml' | |
| # Run manually | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: ./tests/run_tests.sh | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: docker compose -f docker-compose.test.yml up --build typecheck --exit-code-from typecheck |