Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
- name: Run ESLint
run: npm run lint
lint-python:
stage: test
image: python:3.9
script:
- pip install flake8
- flake8 .
lint:
stage: test
script:
- ./vendor/bin/phpcs
- name: Check formatting
run: npm run format:check