autoflake: cast
standard_out to avoid type error
#445
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
os: | |
- macos | |
- ubuntu | |
- windows | |
name: tests | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install . | |
- run: pip install pytest | |
- name: run tests | |
run: pytest | |
lint: | |
name: pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.x | |
- name: install package | |
run: pip install . tomli | |
- name: run pre-commit | |
uses: pre-commit/[email protected] | |
fuzz: | |
name: fuzz | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.x | |
- run: pip install . | |
- name: run fuzz | |
run: python test_fuzz.py ./*.py |