Skip to content

Commit

Permalink
Merge pull request #2059 from dbluhm/ci/test-more-python
Browse files Browse the repository at this point in the history
ci: test additional versions of python nightly
  • Loading branch information
WadeBarnes authored Dec 23, 2022
2 parents 0bbfe72 + 1488ff7 commit a372854
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Nightly Tests

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
tests:
name: Tests
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
include:
- os: "ubuntu-20.04"
python-version: "3.6"
uses: ./.github/workflows/tests.yml
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}

tests-indy:
name: Tests (Indy)
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
include:
- os: "ubuntu-20.04"
python-version: "3.6"

uses: ./.github/workflows/tests-indy.yml
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
indy-version: "1.16.0"

0 comments on commit a372854

Please sign in to comment.