Test perl #45
Workflow file for this run
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: history-sync | |
env: | |
ACCESS_KEY: ${{ secrets.ACCESS_KEY }} | |
on: [push] | |
jobs: | |
setup_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker build . --file test/Dockerfile --build-arg ACCESS_KEY=${ACCESS_KEY} --tag test/history-sync:latest | |
- run: docker run test/history-sync:latest; exit $? |