docs: update documents (#38) #78
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: build-and-test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- "**" | |
- "!docs/**" | |
- "!README.md" | |
- "!.github/**" | |
- .github/workflows/build-and-test.yaml | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.12"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pip install poetry | |
- name: Setup python (with pip) | |
uses: actions/setup-python@v5 | |
with: | |
cache: "poetry" | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests | |
run: poetry run pytest --cov-report xml:coverage.xml --cov=t4_devkit | |
- name: Get test coverage | |
uses: orgoro/[email protected] | |
continue-on-error: true | |
with: | |
coverageFile: ./coverage.xml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
thresholdAll: 0.5 | |
thresholdNew: 0.8 | |
thresholdModified: 0.8 |