-
Notifications
You must be signed in to change notification settings - Fork 3
44 lines (39 loc) · 994 Bytes
/
ci-additional.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CI Additional
on:
push:
branches:
- "*"
# pull_request:
# branches:
# - "*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
min-version-policy:
name: Minimum Version Policy
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all branches and tags.
- name: Create conda environment
uses: mamba-org/setup-micromamba@v2
with:
environment-name: min-version-policy
micromamba-version: 'latest'
create-args: >-
python=3.10
pyyaml
conda
python-dateutil
condarc: |
channels:
- conda-forge
- nodefaults
- name: minimum versions policy
run: |
python ci/min_deps_check.py ci/requirements/min-all-deps.yml