Skip to content

Commit c511cb6

Browse files
committed
Update actions/checkout and actions/setup-python
1 parent dd9c4c6 commit c511cb6

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
name: Run Tests
22
on: [push, pull_request]
3-
jobs:
3+
4+
jobs:
45
test:
56
runs-on: ubuntu-latest
67
steps:
7-
- uses: actions/checkout@v2
8-
- name: Install Python 3
9-
uses: actions/setup-python@v1
8+
- uses: actions/checkout@v4
9+
10+
- name: Install Python
11+
uses: actions/setup-python@v4
1012
with:
11-
python-version: 3.9
13+
python-version: "3.9"
14+
1215
- name: Install dependencies
1316
run: |
1417
python -m pip install --upgrade pip
15-
pip install --upgrade pip setuptools==57.5.0
18+
pip install setuptools==57.5.0
1619
pip install -r requirements.txt
20+
1721
- name: Run tests with unittest
1822
run: python -m unittest test/test.py

0 commit comments

Comments
 (0)