Skip to content

Commit 391b61e

Browse files
committed
Renamed workflow name to Unit Test Linux
1 parent 2de59af commit 391b61e

1 file changed

Lines changed: 17 additions & 16 deletions

File tree

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
1-
name: CI
1+
name: Unit Tests Linux
22

33
on:
44
push:
55
pull_request:
66

77
jobs:
88
run-tests:
9-
strategy:
10-
fail-fast: false
11-
matrix:
12-
os: [ubuntu-latest]
13-
python-version:
14-
- "3.9"
15-
- "3.10"
16-
- "3.11"
17-
18-
name: Test
19-
runs-on: ${{ matrix.os }}
9+
# strategy:
10+
# fail-fast: false
11+
# matrix:
12+
# os: [ubuntu-latest]
13+
# python-version:
14+
# - "3.9"
15+
# - "3.10"
16+
# - "3.11"
17+
18+
name: unit-test
19+
# runs-on: ${{ matrix.os }}
20+
runs-on: python:alpine
2021

2122
steps:
2223
- name: Checkout code
2324
uses: actions/checkout@v3
2425

25-
- name: Set up Python
26-
uses: actions/setup-python@v4
27-
with:
28-
python-version : ${{ matrix.python-version }}
26+
# - name: Set up Python
27+
# uses: actions/setup-python@v4
28+
# with:
29+
# python-version : ${{ matrix.python-version }}
2930

3031
- name: Install dependencies
3132
run: |

0 commit comments

Comments
 (0)