Skip to content

add nbtest job to the GitHub Actions CI #2

add nbtest job to the GitHub Actions CI

add nbtest job to the GitHub Actions CI #2

Workflow file for this run

name: notebook-tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.12.0
env:
discovery.type: single-node
xpack.security.enabled: false
xpack.security.http.ssl.enabled: false
xpack.license.self_generated.type: trial
ports:
- 9200:9200
steps:
- run: curl http://localhost:9200
- run: curl http://127.0.0.1:9200