Skip to content

Fixing requirements #536

Fixing requirements

Fixing requirements #536

Workflow file for this run

name: Tests in Docker (3.8)
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
all_tests:
runs-on: ubuntu-latest
if: github.event_name == 'push

Check failure on line 14 in .github/workflows/docker_tests.yaml

View workflow run for this annotation

GitHub Actions / Tests in Docker (3.8)

Invalid workflow file

The workflow is not valid. .github/workflows/docker_tests.yaml (Line: 14, Col: 9): Unexpected symbol: ''push'. Located at position 22 within expression: github.event_name == 'push
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Building docker
run: |
make docker_build RUNTIME=cpu
- name: Running all tests
run: |
make docker_all_tests RUNTIME=cpu WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} NEPTUNE_API_TOKEN=${{ secrets.NEPTUNE_API_TOKEN }}