Merge pull request #564 from jbuck/master #90
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: make-test | |
# TODO: on: [push, pull_request] | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: docker/login-action@v1 | |
with: | |
# GitHub.com > (this repo) > Settings > Secrets | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
# TODO: find a way to avoid this or make it compatible with on: [pull_request] | |
- name: Run make test | |
run: | | |
make test |