SamuelAndresPascal #114
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: coordop | |
run-name: ${{ github.actor }} | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '30 5 * * 0' | |
jobs: | |
envs: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: multienv | |
python-version: 3.12 | |
auto-activate-base: false | |
- run: conda install -c cosmoloj multienv | |
- run: pyenvs lint | |
- working-directory: coordop | |
run: pyenvs deps | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pylintrc-environments | |
path: pylintrc_* | |
retention-days: 1 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: conda-environments | |
path: coordop/environment_* | |
retention-days: 1 | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
needs: envs | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
- run: mv conda-environments/* coordop/ | |
- run: mv pylintrc-environments/* . | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: lint | |
environment-file: coordop/environment_lint.yml | |
python-version: 3.12 | |
auto-activate-base: false | |
- run: | | |
conda --version | |
python --version | |
conda list | |
- working-directory: coordop | |
run: | | |
pip install . | |
bibliograpy process --output src/coordop bibliograpy.yml | |
pylint --rcfile=../pylintrc_src --ignore-paths src/coordop/bibliography.py src | |
lint-test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
needs: envs | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
- run: mv conda-environments/* coordop/ | |
- run: mv pylintrc-environments/* . | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: lint_test | |
environment-file: coordop/environment_lint_test.yml | |
python-version: 3.12 | |
auto-activate-base: false | |
- run: | | |
conda --version | |
python --version | |
conda list | |
- working-directory: coordop | |
run: | | |
pip install . | |
bibliograpy process --output src/coordop bibliograpy.yml | |
pylint --rcfile=../pylintrc_test test/projection/* | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
needs: envs | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
- run: mv conda-environments/* coordop/ | |
- run: mv pylintrc-environments/* . | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: test | |
environment-file: coordop/environment_test.yml | |
python-version: 3.12 | |
auto-activate-base: false | |
- run: | | |
conda --version | |
python --version | |
conda list | |
- working-directory: coordop | |
run: | | |
pip install . | |
bibliograpy process --output src/coordop bibliograpy.yml | |
pip install . | |
- run: pytest --cov=coordop --junitxml=coordop/report.xml --cov-append coordop |