Skip to content

fix: typo

fix: typo #25

Workflow file for this run

name: dgamelaunch-config CI

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

`schedule` accepts a list of one or more maps with the `cron` key set
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
cron: 0 2 * * 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Try to build the testing-container setup and see if it can
# be started healthily
- name: Docker container build
run: |
utils/build-testing-container.sh --no-tty
- name: Docker container test
run: |
docker run -d --privileged dgl-test --background
sleep 32 # TODO: can we check this more quickly?
docker ps --filter "health=healthy" | grep `docker ps -lq`