Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lucky committed Nov 18, 2024
1 parent fcbc568 commit 529bc90
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 73 deletions.
70 changes: 0 additions & 70 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

14 changes: 11 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@ name: Python package
on:
push:
branches: [ master ]
paths:
- '**.py'
- 'requirements.txt'
- 'pyproject.toml'
pull_request:
branches: [ master ]
paths:
- '**.py'
- 'requirements.txt'
- 'pyproject.toml'

jobs:
build:
Expand All @@ -16,12 +24,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 529bc90

Please sign in to comment.