-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEBUG: new approach: start with pixi-enabled container
- Loading branch information
Showing
1 changed file
with
6 additions
and
24 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,35 +7,17 @@ on: | |
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: ghcr.io/prefix-dev/pixi:latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
- name: Install pytest | ||
- name: Basics | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pytest | ||
- name: Test with pytest | ||
pixi --version | ||
- name: build all | ||
run: | | ||
pytest --version | ||
- name: Install pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.39.2 | ||
cache: true | ||
auth-host: prefix.dev | ||
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | ||
run: pixi --version | ||
# - name: build all | ||
# run: | | ||
# pixi run clean | ||
# pixi run build | ||
pixi run clean | ||
pixi run build | ||
# pixi run check | ||
# pixi run docs | ||
# | ||
|