[PR] Preparing Release 2.0.0 #55
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: Continuous Integration (CI) | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
ci: | |
# Set up operating system | |
runs-on: ubuntu-latest | |
# Define job steps | |
steps: | |
- name: Check-out repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
# Check if the main dockerfile builds: | |
- name: Build "Production" Docker Image | |
run: | | |
make docker_build | |
# Check if the main dockerfile builds: | |
- name: Build "Development" Docker Image Using Compose | |
run: | | |
make compose_build_dev | |
# TODO: Running containerized tests: | |
# - name: Run Docker Tests With Compose | |
# run: | | |
# make action_compose_test |