Skip to content

Commit

Permalink
Multiple Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-quintero committed Dec 7, 2023
1 parent d8eae3b commit a3ce6c0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 35 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/build.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ on: [push]
jobs:
python-lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: git clone
uses: actions/checkout@v3

- name: set up Python
- name: set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}

- name: install dependencies
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ on: [push]
jobs:
python-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: git clone
uses: actions/checkout@v3

- name: set up Python
- name: set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}

- name: install dependencies
run: |
Expand Down

0 comments on commit a3ce6c0

Please sign in to comment.