Update local and remote build #9
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: Test | |
on: | |
pull_request: | |
push: { branches: main } | |
jobs: | |
test: | |
name: Run test suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build environment | |
run: | | |
apt-get update && \ | |
apt-get upgrade -y && \ | |
apt-get install -y less wget && \ | |
apt-get install -y build-essential && \ | |
apt-get install -y libdancer-perl | |
- name: Run docker image with entrypoint | |
run: perl app.pl & | |
- name: Run curl to ensure endpoint responds | |
run: curl -i http://127.0.0.1:3000 |