This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Update golang Docker tag to v1.22.6 #216
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 |