Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslansenatorov committed Oct 22, 2024
2 parents 763f66e + 5ecb79b commit 15fe7fb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ on:
pull_request:
schedule:
- cron: "0 0 * * *" # Run everyday

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
python-version: ["3.9", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# python-version: ${{ matrix.python-version }}
python-version: 3.13
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 15fe7fb

Please sign in to comment.