mirror of
https://github.com/tonarino/innernet.git
synced 2026-04-26 20:02:40 +02:00
19 lines
369 B
YAML
19 lines
369 B
YAML
name: Docker tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build the Docker images
|
|
run: docker-tests/build-docker-images.sh
|
|
- name: Run the Docker tests
|
|
run: docker-tests/run-docker-tests.sh --userspace --verbose
|