Skip to content

Commit

Permalink
ci: Change how we run python based check jobs (#1799)
Browse files Browse the repository at this point in the history
Somehow the combination of the `alpine` image we were using for python based actions was breaking github's checkout action. This should fix that.
  • Loading branch information
paulgessinger committed Jan 25, 2023
1 parent 90a81f4 commit e728d54
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ jobs:

license:
runs-on: ubuntu-latest
container: python:alpine3.6
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Check
run: >
apk add --no-cache git
sudo apt-get install -y git
&& CI/check_license.py . --exclude "*thirdparty/*"
include_guards:
runs-on: ubuntu-latest
container: python:alpine3.6
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Check
run: >
CI/check_include_guards.py . --fail-global --exclude "*thirdparty/*"
Expand All @@ -65,17 +65,17 @@ jobs:
CI/check_boost_test_macro.sh
smearing_config:
runs-on: ubuntu-latest
container: python:alpine3.6
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Check
run: >
CI/check_smearing_config.py .
cmake_options:
runs-on: ubuntu-latest
container: python:alpine3.10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Check
run: >
docs/parse_cmake_options.py CMakeLists.txt --write docs/getting_started.md --verify

0 comments on commit e728d54

Please sign in to comment.