Remove fixes #39
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: Test Docker image | |
on: | |
workflow_dispatch: # Allow manually running | |
workflow_call: # Allow another workflow to call this one | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
branches: # Target | |
- 'main' | |
- 'dev' | |
push: | |
branches: | |
# - 'main' | |
- 'codecov' | |
# tags: | |
# - 'v*' | |
jobs: | |
test_docker_image: | |
name: Test image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate Dockerfile supports multi-arch | |
run: | | |
echo "Checking if the base docker image supports amd64 and arm64..." | |
bash ./tests/validate_dockerfile.sh | |
# - name: Run unit tests | |
# run: | | |
# echo "Running unit tests..." | |
# bash ./tests/tests.sh | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: head | |
- name: Install Ruby dependencies | |
run: | | |
bundle install | |
bundle update | |
- name: Run unit tests | |
run: bashcov ./tests/tests.sh && ls -la coverage | |
- name: Upload reports to Codecov | |
uses: codecov/codecov-action@v4-beta | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
fail_ci_if_error: true | |
file: coverage/coverage.json | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: code-coverage-report | |
path: coverage/coverage.json | |
retention-days: 5 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and export Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true # Do not push this image | |
tags: minituff/nautical-backup:test | |
- name: Run integation tests against Docker image | |
run: | | |
cd tests | |
docker compose run nautical-backup-test1 --exit-code-from nautical-backup-test1 | |
docker compose run nautical-backup-test2 --exit-code-from nautical-backup-test2 | |