Création d'une variable data_type qui permet de spécifier le type de … #2277
This file contains hidden or 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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| backend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Backend code formatting check (Black) | |
| uses: psf/black@stable | |
| with: | |
| src: "setup.py ./backend/gn_module_monitoring" | |
| frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v3 | |
| - name: Frontend code formatting check (Prettier) | |
| run: npm install prettier@~3.1.0 && npm run format:check | |
| working-directory: ./frontend |