feat: README Badges and Execexam Logo #86
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: build | |
# Use more columns for terminal output | |
env: | |
COLUMNS: 120 | |
PYTHONIOENCODING: utf8 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.12"] | |
include: | |
- os: macos-latest | |
python-version: "3.12" | |
- os: windows-latest | |
python-version: "3.12" | |
steps: | |
- name: Check out Repository Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.8.3 | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Run Linters | |
run: | | |
pipx install ruff | |
poetry run task lint | |
- name: Run Tests | |
run: | | |
poetry run task test-not-fuzz | |
- name: Run Tests and Generate Coverage | |
run: | | |
poetry run pytest -s --cov=my_package --cov-report json:coverage.json | |
- name: Generate Coverage and Version Badges | |
run: | | |
poetry run python scripts/badges.py | |
- name: Commit Badge | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
git add README.md | |
git commit -m "Update coverage and version badges" | |
git push |