Skip to content

Commit

Permalink
chore: Add python version to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed May 31, 2021
1 parent e1b31ad commit 7e69833
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/alpine.yml
Expand Up @@ -23,16 +23,20 @@ jobs:
include:
- node: 12
alpine: "3.11"
python: python2
- node: 14
alpine: "3.11"
python: python3
- node: 15
alpine: "3.11"
python: python3
- node: 16
alpine: "3.13"
python: python3

steps:
- name: Install Alpine build tools
run: apk add --no-cache python make git gcc g++
run: apk add --no-cache ${{ matrix.python }} make git gcc g++

- uses: actions/checkout@v2

Expand Down

0 comments on commit 7e69833

Please sign in to comment.