Skip to content

Commit 1601b28

Browse files
committed
First commit.
1 parent acf98a0 commit 1601b28

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/test.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Unit Test
2+
3+
on:
4+
push:
5+
branches: [master]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
strategy:
12+
matrix:
13+
python-version: ['3.9', '3.10', '3.11']
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v1
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
23+
# - name: Install Dependencies
24+
# run: python -m pip install --upgrade pip
25+
26+
- name: Run Tests
27+
run: python -m unittest ouuid/test/unit.py

0 commit comments

Comments
 (0)