Skip to content

syntax3

syntax3 #31

Workflow file for this run

name: main
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
- '**.md'
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: test
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v2
with:

Check failure on line 30 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yaml

Invalid workflow file

You have an error in your yaml syntax on line 30
init-shell: bash
environment-file: "environment.yml"
environment-name: "trenchrun""
cache-environment: true
cache-downloads: true
- name: "Install Trenchrun"
run: pip install .
- name: 'Debug Info'
run: |
echo python location: `which python`
echo python version: `python --version`
echo pytest location: `which pytest`
echo installed packages
conda list
pip list