Skip to content

Commit

Permalink
Update actions to fix Node 16 warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-phaf committed Feb 12, 2024
1 parent 1037d40 commit e9d381d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
pre-commit-hook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install pre-commit
run: python -m pip install pre-commit
shell: bash
- name: Show pre-commit requirements
run: python -m pip freeze --local
shell: bash
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand All @@ -37,9 +37,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
echo Done catting
- name: Archive load test artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: performance
path: |
Expand Down Expand Up @@ -167,16 +167,16 @@ jobs:
# python-version: ["3.10"] # Add 3.11 back pybind11 bug is fixed
# steps:
# - name: Checkout the repo
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# - name: Ubuntu setup
# run: sudo apt update && sudo apt install libeccodes-data rapidjson-dev pybind11-dev libssl-dev
# - name: Python Setup
# uses: actions/setup-python@v4
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# architecture: x64
# - name: Checkout Source
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# - name: Install Dependencies
# run: |
# pip install --upgrade pip
Expand Down

1 comment on commit e9d381d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

API Unit Test Coverage Report
FileStmtsMissCoverMissing
\_\_init\_\_.py00100% 
datastore_pb2.py584621%23–68
datastore_pb2_grpc.py432347%37–52, 85–87, 92–94, 99–101, 106–108, 112–136, 174, 191, 208, 225
dependencies.py31487%23–24, 31, 38
grpc_getter.py8450%12–16
locustfile.py15150%1–31
main.py22386%27, 37, 47
metadata_endpoints.py19479%16, 33–66, 70
formatters
   \_\_init\_\_.py120100% 
   base_formatter.py7186%18
   covjson.py52198%69
routers
   \_\_init\_\_.py00100% 
   edr.py721185%38–61, 111–112, 139–140
   records.py00100% 
TOTAL33911267% 

API Unit Test Coverage Summary

Tests Skipped Failures Errors Time
16 0 💤 0 ❌ 0 🔥 1.570s ⏱️

Please sign in to comment.