Skip to content

Commit

Permalink
Update CI.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesKarwou authored Jun 5, 2024
1 parent a16d725 commit fe52a3a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# miniforge-variant: Mambaforge-pypy3

steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].6

- name: Additional info about the build
shell: bash
Expand All @@ -61,7 +61,7 @@ jobs:

- name: Make Cache (no worflow_dispatch)
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/conda_pkgs_dir # ${{ matrix.prefix }}
# Increase the last number (0) to reset cache manually
Expand All @@ -70,15 +70,15 @@ jobs:

- name: Make Cache (worflow_dispatch)
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.2
with:
path: ~/conda_pkgs_dir # ${{ matrix.prefix }}
key: ${{ matrix.label }}-conda-${{ hashFiles('devtools/conda-envs/fep_env.yaml') }}-${{ env.DATE }}-${{ inputs.CACHE_NUMBER }}
id: cache2


# More info on options: https://github.com/conda-incubator/setup-miniconda
- uses: conda-incubator/[email protected].1
- uses: conda-incubator/[email protected].4
with:
python-version: ${{ matrix.python-version }}
condarc-file: ${{ matrix.condarc-file }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
pytest -v --cov=transformato --cov-report=xml --color=yes transformato/tests/
- name: CodeCov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4.4.1
with:
file: ./coverage.xml
flags: unittests
Expand Down

0 comments on commit fe52a3a

Please sign in to comment.