Delete README.md #7
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: GraTech Enterprise CI | |
| on: [push, pull_request] | |
| jobs: | |
| quality-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Deps | |
| run: pip install -r backend/requirements.txt || echo 'No requirements yet' | |
| - name: Linting | |
| run: echo 'Running Flake8...' | |
| - name: Security Scan | |
| run: echo 'Running Bandit...' | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| needs: quality-check | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build Docker Images | |
| run: docker compose build |