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

ci: prototype running lint / mypy / unit tests / coverage as GH actions #287

Merged
merged 18 commits into from
Dec 8, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
ci: force python version as string moar
  • Loading branch information
tseaver committed Oct 12, 2021
commit 766098dad39d15350796390bd861aac149ce5b88
4 changes: 2 additions & 2 deletions .github/workflows/unittest_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: "3.10"

- name: Install nox
run: |
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
python-version: "3.10"

- name: Download coverage results
uses: actions/download-artifact@v2
Expand Down