remove hardcoded throw from health
endpoint
#11
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: Hello World! | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize] | |
jobs: | |
hello_world_job: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Say hello | |
run: echo "Hello World!" | |
- name: Now it is | |
run: date | |
- name: Directory content | |
run: ls -l |