Skip to content

style: add linter (#84) #185

style: add linter (#84)

style: add linter (#84) #185

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🐳 Start all the environment
run: make start
- name: 🔦 Lint
run: make lint
- name: 🦭 Wait for the environment to get up
run: |
while ! make ping-mysql &>/dev/null; do
echo "Waiting for database connection..."
sleep 2
done
- name: ✅ Run the tests
run: make test