Skip to content

Commit

Permalink
Use latest Python, actions; set default permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb authored Jan 21, 2025
1 parent 4cb346e commit b21ca31
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: build

permissions: read-all

on:
push:
pull_request:
Expand All @@ -13,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
python-version: ["3.13"]
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -37,6 +39,6 @@ jobs:
make
./setup_environment.sh pytest --cov=.. --cov-branch --cov-report=xml -v -k 'not test_protobuf_installed and not add_test_sites' ../test/test_*.py ../test/medium_test_*.py test/*/*.py
flake8 ../pyext/src/
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit b21ca31

Please sign in to comment.