Remove conda #652
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
pull_request: | |
branches: | |
- main | |
schedule: | |
# <minute [0,59]> <hour [0,23]> <day of the month [1,31]> | |
# <month of the year [1,12]> <day of the week [0,6]> | |
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07 | |
# Run every Monday at 10:24:00 PST | |
# (Since these CRONs are used by a lot of people - | |
# let's be nice to the servers and schedule it _not_ on the hour) | |
- cron: "24 18 * * 1" | |
workflow_dispatch: | |
jobs: | |
test: | |
if: ${{ !contains(github.event.head_commit.message, 'Bump version') }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: [3.9] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/dependencies | |
- name: Test with pytest | |
run: | | |
pdm run pytest --cov cellpack/tests/ | |
- name: Upload codecov | |
uses: codecov/codecov-action@v4 | |
lint: | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, 'Bump version') }} | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/dependencies | |
- name: Lint with flake8 | |
run: | | |
pdm run flake8 cellpack --count --verbose --show-source --statistics --ignore=E501,E277,W503,E203 | |
- name: Check with black | |
run: | | |
pdm run black --check cellpack | |
publish: | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
needs: [lint, test] | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/cellpack | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/dependencies | |
- name: Publish to PyPI | |
run: pdm publish | |