Skip to content

Commit

Permalink
disable checks for requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Nov 4, 2024
1 parent 123ad8b commit fa8a43b
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/ci-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,35 +18,35 @@ env:

jobs:

check-requirements:
#check-requirements:

runs-on: ubuntu-latest
timeout-minutes: 5
# runs-on: ubuntu-latest
# timeout-minutes: 5

steps:
- uses: actions/checkout@v4
# steps:
# - uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
# - name: Set up Python 3.12
# uses: actions/setup-python@v5
# with:
# python-version: '3.12'

- name: Install utils/ dependencies
run: pip install -r utils/requirements.txt
# - name: Install utils/ dependencies
# run: pip install -r utils/requirements.txt

- name: Check requirements files
id: check_reqs
run: python ./utils/dependency_management.py check-requirements DEFAULT
# - name: Check requirements files
# id: check_reqs
# run: python ./utils/dependency_management.py check-requirements DEFAULT

- name: Create commit comment
if: failure() && steps.check_reqs.outputs.error
uses: peter-evans/commit-comment@v3
with:
path: pyproject.toml
body: |
${{ steps.check_reqs.outputs.error }}
# - name: Create commit comment
# if: failure() && steps.check_reqs.outputs.error
# uses: peter-evans/commit-comment@v3
# with:
# path: pyproject.toml
# body: |
# ${{ steps.check_reqs.outputs.error }}

Click [here](https://github.com/aiidateam/aiida-core/wiki/AiiDA-Dependency-Management) for more information on dependency management.
# Click [here](https://github.com/aiidateam/aiida-core/wiki/AiiDA-Dependency-Management) for more information on dependency management.

tests:

Expand Down

0 comments on commit fa8a43b

Please sign in to comment.