Update mambaforge version so that conda doesn't attempt to pull a pyt… #553
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: test | |
on: | |
push: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup_python${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
check-latest: true | |
- run: | | |
python --version | |
- name: setup | |
run: | | |
pip install -U setuptools wheel pip | |
pip install cruft pre-commit | |
- name: pre-commit | |
run: | | |
pre-commit run --all-files | |
- name: cruft | |
run: | | |
./scripts/cruft.sh \ | |
--branch ${{ github.ref_name }} \ | |
--repository ${{ github.repository }} \ | |
--username ${{ secrets.username }} | |
- name: push | |
if: ${{ github.repository == 'pennsignals/servicetemplate' }} | |
run: | | |
./scripts/push.sh \ | |
--branch ${{ github.ref_name }} \ | |
--password ${{ secrets.pat }} \ | |
--repository ${{ github.repository }} \ | |
--username ${{ secrets.username }} |