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

Restructure project #488

Merged
merged 18 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from 15 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
172 changes: 0 additions & 172 deletions .azure-pipelines.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .coveragerc

This file was deleted.

11 changes: 0 additions & 11 deletions .flake8

This file was deleted.

File renamed without changes.
44 changes: 44 additions & 0 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Branch Push CI

on:
push:
branches:
- "**"
paths-ignore:
- README.md
- changelog.rst
- LICENSE
- CITATION
- AUTHORS
- doc/**

defaults:
run:
shell: bash -l {0}

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: latest
environment-name: ${{ github.event.repository.name }}-ubuntu-latest-311
environment-file: requirements/base.txt
create-args: >-
-f requirements/dev.txt
python=3.11
coin-or-cbc
post-cleanup: all
cache-environment: true

- name: Install package
run: pip install --no-dependencies -e .

- name: Install jupyter kernel
run: python -m ipykernel install --user --name calliope

- name: run tests
run: pytest
72 changes: 72 additions & 0 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Pull Request CI

on:
pull_request:
branches:
- "main"
paths-ignore:
- README.md
- changelog.rst
- LICENSE
- CITATION
- AUTHORS
- doc/**

defaults:
run:
shell: bash -l {0}

concurrency:
# Use github.run_id on main branch
# Use github.event.pull_request.number on pull requests, so it's unique per pull request
# Use github.ref on other branches, so it's unique per branch
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
py3version: ["9", "10", "11"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: latest
environment-name: ${{ github.event.repository.name }}-${{ matrix.os }}-3${{ matrix.py3version }}
environment-file: requirements/base.txt
create-args: >-
-f requirements/dev.txt
python=3.${{ matrix.py3version }}
post-cleanup: all
cache-environment: true

- name: Install package
run: pip install --no-dependencies -e .

- name: install CBC (Windows)
if: matrix.os == 'windows-latest'
run: |
wget https://github.com/coin-or/Cbc/releases/download/releases%2F2.10.10/Cbc-releases.2.10.10-w64-msvc17-md.zip -O cbc.zip
unzip cbc.zip -d ${HOME}/cbc
echo "${HOME}/cbc/bin" >> $GITHUB_PATH

- name: install CBC (Unix)
if: matrix.os != 'windows-latest'
run: micromamba install coin-or-cbc

- name: Install jupyter kernel
run: python -m ipykernel install --user --name calliope

- name: run tests
run: pytest

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
if: matrix.os == 'ubuntu-latest' && matrix.py3version == '11'
env:
directory: "./reports/coverage/"
3 changes: 0 additions & 3 deletions .hound.yml

This file was deleted.

Loading
Loading