Skip to content

It works on my machine. #32

It works on my machine.

It works on my machine. #32

Workflow file for this run

name: CI Linux Build and Test
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4

Check failure on line 17 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 17
- name: Test Docker Build
run: |
set -x
docker build -t metacall/nodejs-c-liburing-example .
docker run -p 8000:8000 --name metacall_test -d metacall/nodejs-c-liburing-example
# docker ps
# until [ "`docker inspect -f {{.State.Health.Status}} metacall_test`" == "healthy" ]; do
# sleep 1
# done
sleep 10
curl localhost:8000 || exit 1