1.12.1 #3012
This file contains hidden or 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: | |
create: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
schedule: | |
- cron: "0 8 * * *" | |
jobs: | |
test: | |
name: test ${{ matrix.py }} - ubuntu | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
py: | |
- 3.14 | |
steps: | |
- name: Setup Python for test ${{ matrix.py }} | |
uses: actions/setup-python@v6 | |
with: | |
python-version: ${{ matrix.py }} | |
- uses: actions/checkout@v5 | |
- name: Install Testing Dependencies | |
run: pip install -r developer_requirements.txt | |
- name: Run Black | |
run: | | |
black --target-version py39 --diff fastavro/ tests/ setup.py | |
black --target-version py39 --check fastavro/ tests/ setup.py | |
- name: Verify Docs Build | |
run: | | |
make docs |