Push container images to GHCR instead of Dockerhub (#41) #128
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
# docker continuous integration | |
# run tests | |
--- | |
name: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: python:3.7 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install test runner | |
run: python3 -m pip install tox | |
- name: Run tests | |
run: tox |