Skip to content

Deleting dashboards (TELESTION-458) and changing their names (TELESTION-459) #210

Deleting dashboards (TELESTION-458) and changing their names (TELESTION-459)

Deleting dashboards (TELESTION-458) and changing their names (TELESTION-459) #210

Workflow file for this run

name: Backend Go CI
# Events that trigger this workflow
on: [ push, pull_request ]
defaults:
run:
working-directory: ./backend-go
jobs:
style:
name: Style
runs-on: ubuntu-latest
steps:
- name: Checkout 📥
uses: actions/[email protected]
- name: Check style 🧽
run: docker compose --file docker-compose.ci.yml --profile style up --abort-on-container-exit
- name: Stop containers 🛑
if: always()
run: docker compose --file docker-compose.ci.yml --profile style down
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout 📥
uses: actions/[email protected]
- name: Run tests 🛃
run: docker compose --file docker-compose.ci.yml --profile test up --abort-on-container-exit
- name: Stop containers 🛑
if: always()
run: docker compose --file docker-compose.ci.yml --profile test down