[pre-commit.ci] pre-commit autoupdate #735
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: Test | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: pip install -r requirements-test.txt | |
- run: coverage run --append ./l10n_slovnik file.tmx | |
- run: coverage run --append ./l10n_slovnik file.tbx | |
- run: coverage run --append ./l10n_slovnik || true | |
- run: coverage run --append ./l10n_slovnik invalid || true | |
- uses: codecov/codecov-action@v4.1.0 |