Skip to content

Commit

Permalink
Add Python 3.10 to GHA workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Gábor Lipták <gliptak@gmail.com>
  • Loading branch information
gliptak authored Oct 29, 2021
1 parent 037eff6 commit d93d902
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python: [ '3.6.x', '3.7.x', '3.8.x', '3.9.x' ]
python: [ '3.6.x', '3.7.x', '3.8.x', '3.9.x', '3.10.x' ]
name: Python ${{ matrix.python }} sample on ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies and unzip test-repos
Expand Down

0 comments on commit d93d902

Please sign in to comment.