Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `actions/upload-artifact` from 4.3.0 to 4.4.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.0...v4.4.0) Updates `peter-evans/create-pull-request` from 6 to 7 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96 lines
2.2 KiB
YAML
96 lines
2.2 KiB
YAML
# SPDX-FileCopyrightText: : 2021-2024 The PyPSA-Eur Authors
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
name: CI
|
|
|
|
# Caching method based on and described by:
|
|
# epassaro (2021): https://dev.to/epassaro/caching-anaconda-environments-in-github-actions-5hde
|
|
# and code in GitHub repo: https://github.com/epassaro/cache-conda-envs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
schedule:
|
|
- cron: "0 5 * * TUE"
|
|
|
|
env:
|
|
DATA_CACHE_NUMBER: 2
|
|
|
|
jobs:
|
|
build:
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
max-parallel: 3
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macos-latest
|
|
- windows-latest
|
|
inhouse:
|
|
- stable
|
|
- master
|
|
exclude:
|
|
- os: macos-latest
|
|
inhouse: master
|
|
- os: windows-latest
|
|
inhouse: master
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash -l {0}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup secrets
|
|
run: |
|
|
echo -ne "url: ${CDSAPI_URL}\nkey: ${CDSAPI_TOKEN}\n" > ~/.cdsapirc
|
|
|
|
- name: Setup micromamba
|
|
uses: mamba-org/setup-micromamba@v1
|
|
with:
|
|
micromamba-version: latest
|
|
environment-file: envs/environment.yaml
|
|
log-level: debug
|
|
init-shell: bash
|
|
cache-environment: true
|
|
cache-downloads: true
|
|
|
|
- name: Install inhouse packages
|
|
run: |
|
|
pip install git+https://github.com/PyPSA/atlite.git@master git+https://github.com/PyPSA/powerplantmatching.git@master git+https://github.com/PyPSA/linopy.git@master
|
|
if: ${{ matrix.inhouse }} == 'master'
|
|
|
|
- name: Set cache dates
|
|
run: |
|
|
echo "WEEK=$(date +'%Y%U')" >> $GITHUB_ENV
|
|
|
|
- name: Cache data and cutouts folders
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
data
|
|
cutouts
|
|
key: data-cutouts-${{ env.WEEK }}-${{ env.DATA_CACHE_NUMBER }}
|
|
|
|
- name: Test snakemake workflow
|
|
run: ./test.sh
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v4.4.0
|
|
with:
|
|
name: resources-results
|
|
path: |
|
|
resources
|
|
results
|
|
if-no-files-found: warn
|
|
retention-days: 1
|
|
if: matrix.os == 'ubuntu' && matrix.inhouse == 'stable'
|