Skip to content

Workflow file for this run

name: Test CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
container:
image: pytorch/pytorch:latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: lint
run: make lint
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --no-build-isolation .
apt-get install -y build-essential
- name: Run tests
run: make unittest
- name: coverage:

Check failure on line 31 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 31
run: make coverage