Skip to content

Commit

Permalink
fix: fix lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoub3bidi committed Feb 18, 2024
1 parent 40ff34a commit 1713d4f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Create environment file
run: |
echo "POSTGRES_HOST=${{ secrets.POSTGRES_HOST }}" > .env
echo "POSTGRES_PORT=${{ secrets.POSTGRES_PORT }}" >> .env
echo "POSTGRES_DB=${{ secrets.POSTGRES_DB }}" >> .env
echo "POSTGRES_USER=${{ secrets.POSTGRES_USER }}" >> .env
echo "POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }}" >> .env
- name: Run linter
run: |
setsid ./ci/lint.sh

0 comments on commit 1713d4f

Please sign in to comment.