Skip to content

Workflow file for this run

name: tests

Check failure on line 1 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: container-job
on:
pull_request:
env:
COUCHDB_USER: admin
COUCHDB_PASSWORD: abc123
jobs:
container-job:
runs-on: ubuntu-latest
container: node:16-bullseye
# services:
# couchdb:
# image: couchdb:2.2.0
test:
strategy:
matrix:
go-version: [1.22] # TODO: Add 1.23rc2
name: test
runs-on: ubuntu-latest
# services:
# couchdb:
# env:
# COUCHDB_USER: admin
# COUCHDB_PASSWORD: abc123
# image: couchdb:2.2.0
# options: >-
# --health-cmd "curl -sSf http://localhost:5984/_up"
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version: ${{ matrix.go-version }}
- name: Prepare CouchDB
run: |
export KIVIK_TEST_DSN_COUCH22=http://${COUCHDB_USER}:${COUCHDB_PASSWORD}@couchdb:5984/
while ! curl -sSf http://couchdb:5984/; do
echo "Waiting for CouchDB to be ready..."
sleep 5
done
./script/complete_couch2.sh ${KIVIK_TEST_DSN_COUCH22}
- name: Run tests
run: |
go mod download
go test -race -shuffle=on ./...