Update version and changelog to 0.3.1. (#75) #353
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: Unit Tests | |
on: # NOLINT | |
pull_request: | |
push: | |
schedule: | |
- cron: '0 10 * * MON' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-latest] | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[docs,test] | |
- name: Install Node tools (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
npm install -g markdownlint-cli | |
npm install -g write-good | |
- name: Mypy | |
run: | | |
mypy --ignore-missing-imports --strict src/statick_tool/ | |
- name: Tox | |
run: | | |
python -m tox | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
fail_ci_if_error: false | |
- name: Statick Documentation | |
if: runner.os == 'Linux' | |
uses: sscpac/[email protected] | |
with: | |
profile: documentation.yaml | |
timings: true | |
- name: Self check | |
if: runner.os == 'Linux' | |
uses: sscpac/[email protected] | |
with: | |
profile: self_check.yaml | |
timings: true |