Skip to content

broke down workflows #1

broke down workflows

broke down workflows #1

Workflow file for this run

name: Unit Tests
on:
pull_request:
types:
- opened
- reopened
- ready_for_review
- synchronize
push:
branches:
- master
jobs:
test:
name: Python Version Gauntlet
strategy:
fail-fast: false
matrix:
python-version: '3.10'

Check failure on line 20 in .github/workflows/python310.yaml

View workflow run for this annotation

GitHub Actions / Unit Tests

Invalid workflow file

The workflow is not valid. .github/workflows/python310.yaml (Line: 20, Col: 25): Unexpected value '3.10'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run Unit Tests
run: |
pytest