Updated apipie-rails to prevent 500 error when someone tries to acces… #726
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: Docker | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
jobs: | |
docker: | |
timeout-minutes: 30 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout tutor-server | |
uses: actions/checkout@v2 | |
- name: Start tutor-server | |
uses: ./ | |
- name: Ping tutor-server | |
run: curl --location --fail localhost:3001/ping |