335 add ipv6 support for single ips #445
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rita tests | |
on: | |
pull_request: | |
# Run tests except if only markdown files are changed | |
paths: | |
- '**' | |
- '!*.md' | |
jobs: | |
test: | |
name: static and unit tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: make docker-test | |
# integration: | |
# name: integration tests | |
# runs-on: ubuntu-16.04 | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - run: | | |
# make docker-build-test | |
# docker container create --name rita --entrypoint /bin/sleep quay.io/activecm/rita:test 5m | |
# docker container start rita | |
# docker container exec rita tar cf vendor.tar vendor | |
# docker container cp rita:/go/src/github.com/activecm/rita/rita ./rita | |
# docker container cp rita:/go/src/github.com/activecm/rita/vendor.tar ./vendor.tar | |
# docker container stop rita | |
# tar xf vendor.tar | |
# - run: make integration-test |