Skip to content

made the dev install run the dev container after it's made #46

made the dev install run the dev container after it's made

made the dev install run the dev container after it's made #46

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
check:
uses: ./.github/workflows/_check.yml
lint:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_tox.yml
with:
tox: pre-commit,type-checking
test:
needs: check
if: needs.check.outputs.branch-pr == ''
strategy:
matrix:
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
python-version: ["3.10", "3.11"]
include:
# Include one that runs in the dev container environment
- runs-on: "ubuntu-latest"
python-version: "dev_container"
fail-fast: false
uses: ./.github/workflows/_test.yml

Check failure on line 30 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/_test.yml" (source branch with sha:1b9a371a173c0e0511e600d68e30656654056100) : You have an error in your yaml syntax on line 35
with:
runs-on: ${{ matrix.runs-on }}
python-version: ${{ matrix.python-version }}
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
container:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_container.yml
permissions:
packages: write
docs:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_docs.yml
dist:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_dist.yml
pypi:
if: github.ref_type == 'tag'
needs: dist
uses: ./.github/workflows/_pypi.yml
permissions:
id-token: write
release:
if: github.ref_type == 'tag'
needs: [dist, docs]
uses: ./.github/workflows/_release.yml
permissions:
contents: write