mirror of
https://github.com/versity/versitygw.git
synced 2026-01-10 13:27:21 +00:00
Adds a GitHub Actions workflow to run the `host-style` tests inside Docker containers. The tests are executed in a Docker environment using `Docker Compose` with three containers: one for running the tests, one for setting up the server, and one using the `dnsmasq` image for `DNS` server configuration.
14 lines
245 B
YAML
14 lines
245 B
YAML
name: host style tests
|
|
permissions: {}
|
|
on: pull_request
|
|
|
|
jobs:
|
|
build-and-run:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: run host-style tests
|
|
run: make test-host-style
|