Skip to content

Commit

Permalink
fix node js version
Browse files Browse the repository at this point in the history
  • Loading branch information
yibeichan committed Oct 10, 2024
1 parent a23a138 commit d03176e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/testactivities.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '3.10', '3.11']

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
Expand All @@ -26,4 +28,4 @@ jobs:
python tests/jsonParser.py
- name: Test with pyshacl
run: |
reproschema -l DEBUG validate activities
reproschema -l DEBUG validate activities

0 comments on commit d03176e

Please sign in to comment.