Added domain and polling_interval in config and env vars for worker tasks #337
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: Continuous Integration | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Test | |
run: > | |
DOCKER_BUILDKIT=1 docker build . | |
--progress=plain | |
--target=unit_test | |
integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Test | |
run: > | |
DOCKER_BUILDKIT=1 docker build | |
--progress=plain | |
--build-arg KEY=${{ secrets.KEY }} | |
--build-arg SECRET=${{ secrets.SECRET }} | |
--build-arg CONDUCTOR_SERVER_URL=${{ secrets.CONDUCTOR_SERVER_URL }} | |
--target=test | |
. |