Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelmansuy committed Mar 19, 2024
1 parent 10df0c1 commit f94ce74
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@ name: Build

on:
push:
branches: [ main ]
branches: [ master ]
workflow_dispatch:

jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12] # Specify the Python versions here

steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: ${{ matrix.python-version }} # Use the matrix value

- name: Install Poetry
run: |
Expand Down

0 comments on commit f94ce74

Please sign in to comment.