Skip to content

fix: logs

fix: logs #96

Workflow file for this run

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