-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Support GitHub Actions #22
Comments
mypy has an interesting workflow: jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
name: [windows-py37-32, windows-py37-64]
include:
- name: windows-py37-32
python: '3.7'
arch: x86
os: windows-latest
toxenv: py37
- name: windows-py37-64
python: '3.7'
arch: x64
os: windows-latest
toxenv: py37 It is very verbose. I don't like it. |
pytest has the same sort of thing, very verbose: |
Fixed in bce3526. check-python-versions 0.17.0 has support for GitHub Actions! |
A bunch of ZopeFoundation repos are getting GitHub actions based on https://github.com/zopefoundation/meta/blob/master/config/default/tests.yml.in:
One project that does this is zope.browser.
Originally posted by @mgedmin in #9 (comment)
The text was updated successfully, but these errors were encountered: