Skip to content

Commit

Permalink
Upgrade GitHub Actions to node20 runtime (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
GalaxySnail committed Sep 12, 2024
1 parent a20c944 commit 4161153
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 11 deletions.
43 changes: 34 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
tags: ["*"]
pull_request:
branches: [master]
schedule:
- cron: "30 16 1 * *"
workflow_dispatch:

env:
Expand Down Expand Up @@ -33,6 +35,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy-2.7"
- "pypy-3.7"
- "pypy-3.8"
Expand All @@ -48,13 +51,26 @@ jobs:
- os: ubuntu-20.04
container: python:2.7-buster
python-version: "2.7"
exclude:
- os: macos-latest
python-version: "3.7"
- os: macos-latest
python-version: "pypy-3.7"

runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4

- name: Ignore certificate verification on python 3.5
shell: bash
run: |
# INSECURE!! But it should be OK for CI tests.
echo 'PIP_TRUSTED_HOST=pypi.python.org pypi.org files.pythonhosted.org' >>$GITHUB_ENV
if: 'matrix.python-version == 3.5'

- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down Expand Up @@ -117,10 +133,11 @@ jobs:
fi
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data.${{ matrix.os }}-${{ matrix.python-version }}
path: .coverage.*
include-hidden-files: true
if-no-files-found: ignore

coverage:
Expand All @@ -129,14 +146,22 @@ jobs:
needs: tests

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: .python-version-default
cache: pip

- name: Merge coverage data artifacts
uses: actions/upload-artifact/merge@v4
with:
name: coverage-data
pattern: coverage-data.*
include-hidden-files: true
delete-merged: true

- name: Download coverage data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data

Expand All @@ -152,7 +177,7 @@ jobs:
python -Im coverage report --format=markdown >> $GITHUB_STEP_SUMMARY
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

Expand All @@ -162,7 +187,7 @@ jobs:
python -Im coverage report --fail-under=100
- name: Upload HTML report if check failed.
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: html-report
path: htmlcov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
pull_request:
branches: [ "master" ]
schedule:
- cron: "36 4 * * 2"
- cron: "36 4 1 * *"

jobs:
analyze:
Expand Down
2 changes: 1 addition & 1 deletion .python-version-default
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11
3.12

0 comments on commit 4161153

Please sign in to comment.