mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 19:48:31 +02:00
add matrix so github doesn't get confused
This commit is contained in:
parent
0c574323fe
commit
fcc31f88cf
1 changed files with 6 additions and 1 deletions
7
.github/workflows/docs.yaml
vendored
7
.github/workflows/docs.yaml
vendored
|
@ -22,6 +22,11 @@ jobs:
|
||||||
accessibility:
|
accessibility:
|
||||||
if: contains(toJson(github.event.commits), '[ci skip]') == false
|
if: contains(toJson(github.event.commits), '[ci skip]') == false
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
|
matrix:
|
||||||
|
python-version: [ 3.9 ]
|
||||||
|
os: [ ubuntu-latest ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -29,7 +34,7 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@main
|
uses: actions/setup-node@main
|
||||||
|
|
Loading…
Add table
Reference in a new issue