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: GitHub Actions Test on node: [12.x, 14.x, 16.x] #2439

Merged
merged 4 commits into from Jun 28, 2021
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
@@ -1,14 +1,18 @@
# TODO: Line 43, enable pytest --doctest-modules

name: Tests
on: [push, pull_request]
on:
cclauss marked this conversation as resolved.
Show resolved Hide resolved
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
Tests:
strategy:
fail-fast: false
max-parallel: 15
matrix:
node: [10.x, 12.x, 14.x]
node: [12.x, 14.x, 16.x]
python: [3.6, 3.8, 3.9]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand Down