Fix tag #279
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: run full tests | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: run shellcheck | |
uses: sudo-bot/action-shellcheck@latest | |
with: | |
cli-args: "--format=checkstyle --severity=info --enable=all scripts/*.sh" | |
run-all: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker compose version | |
run: docker compose version | |
- name: create temp folder | |
run: make create-temp-env | |
- name: setup for tests | |
run: make setup-test | |
- name: run docker-test | |
run: make run-test | |
- name: teardown tests | |
run: make cleanup-test |