Skip to content

Archive annual reports #186

Archive annual reports

Archive annual reports #186

Workflow file for this run

name: MetaBrainz Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create configuration file
run: cp config.py.example config.py
- name: Login to Docker Hub
run: echo ${{ secrets.DOCKER_HUB_PASSWORD }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin
continue-on-error: true
- name: Pull docker images
run: docker-compose -f docker/docker-compose.test.yml pull
- uses: satackey/[email protected]
continue-on-error: true
- name: Run tests
run: ./test.sh
- name: Publish Unit Test Results
uses: EnricoMi/[email protected]
if: ${{ always() }}
with:
files: reports/tests.xml