ReadME: Table format updated for covered workflows (#112) #310
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
# Moving from conda to pixi way of env management | |
# Read more: https://pixi.sh/dev/basic_usage/ | |
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
Env_check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up env with pixi goodness | |
uses: prefix-dev/setup-pixi@v0.8.0 | |
with: | |
pixi-version: v0.34.0 | |
cache: true | |
- run: pixi run DJ_package | |
- run: pixi run DJ_pre_commit |