style: add linter (#84) #185
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: 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 |