Skip to content

Commit 2278c5c

Browse files
author
deathaxe
committed
CI: Upgrade unittest actions
1 parent cef0594 commit 2278c5c

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.coveragerc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[run]
2+
omit = */tests/*

.github/workflows/ci-lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
jobs:
2222
lint:
2323
name: Python ${{ matrix.python }}
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
2727
python:
@@ -30,9 +30,9 @@ jobs:
3030
- 'x64'
3131
steps:
3232
- name: Checkout Repository
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
- name: Set up Python ${{ matrix.python }}
35-
uses: actions/setup-python@v3
35+
uses: actions/setup-python@v5
3636
with:
3737
python-version: ${{ matrix.python }}
3838
architecture: ${{ matrix.arch }}

.github/workflows/ci-syntax-tests.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ jobs:
3232
default_packages: st3
3333
- build: 4107
3434
default_packages: v4107
35-
- build: latest
36-
default_packages: master
3735
steps:
38-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3937
- uses: SublimeText/syntax-test-action@v2
4038
with:
4139
build: ${{ matrix.build }}

.github/workflows/ci-unit-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
matrix:
2929
st-version: [3, 4]
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- uses: SublimeText/UnitTesting/actions/setup@v1
3333
with:
3434
sublime-text-version: ${{ matrix.st-version }}
3535
- uses: SublimeText/UnitTesting/actions/run-tests@v1
3636
with:
3737
coverage: true
38-
codecov-upload: true
38+
- uses: codecov/codecov-action@v4

.github/workflows/deploy-gh-pages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: '3.8'
2424
- name: Install MkDocs

0 commit comments

Comments
 (0)