Development environment updates, io, and docs #48
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: Pixi | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.34.0 | |
environments: dev | |
manifest-path: pyproject.toml | |
cache: false | |
locked: false | |
#cache-write: | |
# ${{ github.event_name == 'push' && github.ref_name == 'main' }} | |
# NOTE: https://github.com/prefix-dev/setup-pixi/issues/136 | |
- name: Ensure Dynamic version | |
run: | | |
pip install -e . | |
- name: Run Pylint | |
continue-on-error: true | |
run: | | |
pixi run lint | |
- name: Run Pytest | |
env: | |
MAXAR_API_KEY: ${{ secrets.MAXAR_API_KEY}} | |
run: | | |
pixi run networktest |