Skip to content

Commit

Permalink
matrix testing by year
Browse files Browse the repository at this point in the history
  • Loading branch information
crerwin committed Nov 28, 2023
1 parent 9724a90 commit f2161de
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,29 @@ name: Python testing

on: [push]

env:

jobs:
build:
runs-on: [self-hosted, linux]
strategy:
matrix:
python-version: ["3.10"]
year:
- 2015
- 2016
- 2017
- 2018
- 2019
- 2020
- 2021
- 2022

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit f2161de

Please sign in to comment.