Skip to content

Commit

Permalink
Refactor GitHub Actions configurations.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel1rf committed May 4, 2024
1 parent 157752b commit 3c95231
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: C++ Standard Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run before script
timeout-minutes: 10
run: |
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
name: C++ Benchmark
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run before script
timeout-minutes: 10
run: |
Expand All @@ -87,11 +87,15 @@ jobs:
./benchmark_phevaluator
python-test:
name: Python test
name: Python - Run unit tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -142,7 +146,3 @@ jobs:
run: |
cd python
pip install .
- name: Run script
run: |
cd python
python -m unittest discover -v

0 comments on commit 3c95231

Please sign in to comment.