Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit a0f13b6

Browse files
Fix CI
1 parent 023b740 commit a0f13b6

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.github/workflows/clang_format_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request, push]
44
jobs:
55
build:
66
name: clang-format-check
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-latest
88

99
# Run on external PRs, but not internal PRs as they'll be run by the push
1010
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

.github/workflows/coverage_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
jobs:
99
build:
1010
name: coverage-test
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212

1313
# Run on external PRs, but not internal PRs as they'll be run by the push
1414
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

.github/workflows/docstring_check.yaml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,25 @@ on: [pull_request, push]
44
jobs:
55
build:
66
name: docstring-check
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-latest
88

99
# Run on external PRs, but not internal PRs as they'll be run by the push
1010
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
1111

1212
steps:
13-
- name: Fetch repository
13+
- name: Checkout repository
1414
uses: actions/checkout@v3
1515
with:
16-
submodules: recursive
17-
- name: Install packages
18-
run: sudo apt-get update && sudo apt-get install build-essential libhdf5-dev python3-venv libclang1-9
16+
submodules: 'true'
17+
18+
- name: Setup python
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.10'
22+
23+
- name: Install packages on Linux
24+
run: sudo apt-get update && sudo apt-get install build-essential libhdf5-dev
25+
1926
- name: Check docstrings
2027
run: |
2128
export LIBCLANG_PATH=/usr/lib/x86_64-linux-gnu/libclang-9.so.1

.github/workflows/publish-sdist-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
strategy:
1919
matrix:
20-
os: [ubuntu-20.04, macos-11, windows-2022]
20+
os: [ubuntu-latest, macos-11, windows-2022]
2121

2222
steps:
2323
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)