This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Update actions/checkout digest to 692973e #211
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: CI | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Docker Build | |
run: docker build -t crazyuploader/pinger:latest . | |
- name: Docker Compose Run | |
run: | | |
cp .env-example .env | |
docker-compose up --detach | |
- name: Run ShellCheck | |
run: shellcheck *.sh |