Skip to content

ci: add test_api job #1

ci: add test_api job

ci: add test_api job #1

Workflow file for this run

name: Test API
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test_api:
runs-on: ubuntu-22.04
steps:
- run: |
docker --version
docker-compose --version
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- run: docker-compose config
- run: docker-compose up --detach api fuseki metrics
# This fails
- run: curl http://localhost:8080/exist/restxq/v1/info
- run: docker-compose down