Skip to content

Trial yaml

Trial yaml #1

Workflow file for this run

name: Run Unit Test via PyTest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:

Check failure on line 11 in .github/workflows/initialtest.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/initialtest.yaml

Invalid workflow file

You have an error in your yaml syntax on line 11
- uses: actions/checkout@v3
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt