Skip to content

Commit 74d713c

Browse files
committed
update ci
Signed-off-by: laminar <[email protected]>
1 parent 600d647 commit 74d713c

File tree

4 files changed

+7
-76
lines changed

4 files changed

+7
-76
lines changed

.github/workflows/conformance.yml

-69
This file was deleted.

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ jobs:
44
lint:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v3
88
- name: Setup Python
9-
uses: actions/setup-python@v2
9+
uses: actions/setup-python@v4
1010
- name: Install tox
1111
run: python -m pip install tox
1212
- name: Lint

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
ref: ${{ github.event.release.tag_name }}
1616
- name: Install Python
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
- name: Install build dependencies
1919
run: python -m pip install -U setuptools build wheel
2020
- name: Build distributions

.github/workflows/unit.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
7+
python: ['3.8', '3.9', '3.10']
88
platform: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.platform }}
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313
- name: Use Python ${{ matrix.python }}
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: ${{ matrix.python }}
1717
- name: Install tox

0 commit comments

Comments
 (0)