Skip to content

chaged [on] from ci.yml #7

chaged [on] from ci.yml

chaged [on] from ci.yml #7

Workflow file for this run

name: CI Check
on:
push:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
branches: []]
pull_request:
branches: []
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
clean-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11']
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Getting repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt