feat: add jinja2 support for ecs.yml files #114
Workflow file for this run
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: Pre Commits | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'main' | |
| pull_request: | |
| types: [opened, reopened] | |
| branches-ignore: | |
| - 'main' | |
| jobs: | |
| ci: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11"] | |
| poetry-version: ["2.1.2"] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install pre commits | |
| run: pip install pre-commit | |
| - name: Run pre commits | |
| run: pre-commit run --all |