fix: add test workflow #1
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: Build Docker Image | |
on: | |
push: | |
branches: | |
- test-docker | |
jobs: | |
build: | |
name: Build Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the code | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
# Set up Docker Buildx (Optional but recommended for advanced builds) | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
# Build the Docker image | |
- name: Build Docker Image | |
run: | | |
docker build -t notifier:latest . |