Skip to content

Commit 986df33

Browse files
authored
chore/ci: update runner to ubuntu-latest, minor fixes in comments (#223)
1 parent 15242e8 commit 986df33

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/publish.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This workflows will upload a Python Package using Twine when a release is created
1+
# This workflow will upload a Python Package using Twine when a release is created
22
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
33

44
name: Upload Python Package
@@ -10,8 +10,7 @@ on:
1010
jobs:
1111
deploy:
1212

13-
runs-on: ubuntu-20.04
14-
13+
runs-on: ubuntu-latest
1514
steps:
1615
- uses: actions/checkout@v4
1716

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: ['push', 'pull_request']
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-latest
88

99
strategy:
1010
matrix:
@@ -46,7 +46,7 @@ jobs:
4646
- name: Lint codebase
4747
run: python3 -m flake8
4848

49-
- name: Run testsuite
49+
- name: Run test suite
5050
run: python3 setup.py pytest
5151

5252
- name: Test tldr cli

0 commit comments

Comments
 (0)