fix: logs #96
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: Integration Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build containers | |
run: make docker/build acronyms_data_dir=../../testing/integration/data | |
env: | |
ACRONYMS_SECRET: ${{ secrets.ACRONYMS_SECRET }} | |
- name: Login to dockerhub | |
run: echo "${{ secrets.INTELEKTIKALT_DOCKERHUB_PASS }}" | docker login -u intelektikalt --password-stdin | |
- name: Run integration tests | |
env: | |
ACRONYMS_SECRET: ${{ secrets.ACRONYMS_SECRET }} | |
ACCENTER_SECRET: ${{ secrets.ACCENTER_SECRET }} | |
TRANSCRIBER_SECRET: ${{ secrets.TRANSCRIBER_SECRET }} | |
CLITICS_SECRET: ${{ secrets.CLITICS_SECRET }} | |
run: make test/integration |