Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try to fix CI #12

Merged
merged 2 commits into from
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ name: CI
on:
push:
branches:
- "master"
- master
pull_request:
branches:
- "master"
- master
schedule:
# Tests run every Monday
- cron: "0 0 * * 1"
- cron: "0 2 * * 1"

jobs:
test:
Expand All @@ -20,7 +19,7 @@ jobs:
python-version: [3.8, "3.12"]

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

- name: Additional Build Info
shell: bash
Expand All @@ -30,12 +29,13 @@ jobs:
ulimit -a

- name: Create Environment
uses: mamba-org/setup-micromamba@v1
uses: conda-incubator/setup-miniconda@v3
with:
extra-specs: python=${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channel-priority: flexible
activate-environment: test
auto-activate-base: false
show-channel-urls: true

- name: Install crystalatte
# conda setup requires this special shell
Expand Down
Loading