Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run tests daily and with all supported python versions #113

Merged
merged 4 commits into from
Aug 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/unix.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: Unix

on: [push, pull_request]
on:
push:
pull_request:
# Run daily at midnight (UTC).
schedule:
- cron: '0 0 * * *'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.8, 3.9, '3.10', 3.11]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure of the syntax, but do the single quote actually do sth or should this be the same for all versions?

Suggested change
python-version: [3.8, 3.9, '3.10', 3.11]
python-version: [3.8, 3.9, 3.10, 3.11]

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, the quotes make it a string. Otherwise YAML interprets it as a double and will read 3.1 instead of 3.10.


steps:
- uses: actions/checkout@v2
Expand Down
Loading