Layout array renaming #1162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI-unittests | |
# Execute unit tests - flake8 and pytest | |
# | |
env: | |
SIMTOOLS_DB_SERVER: ${{ secrets.DB_SERVER }} | |
SIMTOOLS_DB_API_USER: ${{ secrets.DB_API_USER }} | |
SIMTOOLS_DB_API_PW: ${{ secrets.DB_API_PW }} | |
SIMTOOLS_DB_API_PORT: ${{ secrets.DB_API_PORT }} | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize] | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
unittests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
python-version: "3.9" | |
install-method: mamba | |
# - os: ubuntu-latest | |
# python-version: "3.9" | |
# install-method: pip | |
- os: macos-latest | |
python-version: "3.9" | |
install-method: mamba | |
# - os: macos-latest | |
# python-version: "3.9" | |
# install-method: pip | |
# - os: ubuntu-latest | |
# python-version: "3.10" | |
# install-method: mamba | |
# - os: ubuntu-latest | |
# python-version: "3.10" | |
# install-method: pip | |
- os: ubuntu-latest | |
python-version: "3.11" | |
install-method: mamba | |
- os: ubuntu-latest | |
python-version: "3.11" | |
install-method: pip | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Prepare mamba installation | |
if: matrix.install-method == 'mamba' | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
run: | | |
# setup correct python version | |
sed -i -e "s/- python=.*/- python=$PYTHON_VERSION/g" environment.yml | |
- name: Install mamba dependencies | |
if: matrix.install-method == 'mamba' | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
create-args: python=${{ matrix.python-version }} | |
init-shell: bash | |
- name: Python setup | |
if: matrix.install-method == 'pip' | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
check-latest: true | |
- if: ${{ matrix.install-method == 'pip' && runner.os == 'macOS' }} | |
name: Fix Python PATH on macOS | |
# from https://github.com/cta-observatory/ctapipe/blob/cfacbe1eeb2d9a4634980e5f1ef39b944bca6a7a/.github/workflows/ci.yml#L100 | |
run: | | |
tee -a ~/.bash_profile <<<'export PATH="$pythonLocation/bin:$PATH"' | |
- name: Python dependencies | |
run: | | |
python --version | |
pip install '.[tests,dev,doc]' | |
- name: flake8 | |
run: | | |
flake8 --max-line-length 100 --per-file-ignores="_version.py:F401 E501" . | |
- name: Unit tests | |
shell: bash -l {0} | |
run: pytest --durations=10 --color=yes --cov --cov-report=xml | |
- uses: codecov/[email protected] |