Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hexmode committed Dec 10, 2023
1 parent 4ca7449 commit 3791ddf
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
# Verify that every submodule can be checked out
- uses: actions/checkout@v2
- name: Verify that every submodule can be checked out
uses: actions/checkout@v4
with:
submodules: true
# Verify readable with Python's configparser, which MediaWiki codesearch uses
- uses: actions/setup-python@v2
- name: Verify readable with Python's configparser, which MediaWiki codesearch uses
uses: actions/setup-python@v4
with:
python-version: '3.7'
- run: python -c "import configparser as c;c.ConfigParser().read('.gitmodules')"
python-version: '3.10'
run: python -c "import configparser as c;c.ConfigParser().read('.gitmodules')"
- name: Verify that the policy is met
run: |
./policy

0 comments on commit 3791ddf

Please sign in to comment.