Skip to content

Commit

Permalink
Task 2
Browse files Browse the repository at this point in the history
  • Loading branch information
VoronM1522 committed Feb 5, 2025
1 parent 32dd4b6 commit b39cb17
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions app_python/.github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
- uses: actions/checkout@v3

- name: Set up python
uses: actions/setup-python@v3
with:
python-version: '3.13'
python-version: '3.10'

- name: Install dependencies and linter
run: |
Expand All @@ -45,4 +51,9 @@ jobs:
with:
context: app_python
push: true
tags: ${{ env.DOCKER_IMAGE }}:${{ env.DOCKER_TAG }}
tags: ${{ env.DOCKER_IMAGE }}:${{ env.DOCKER_TAG }}

- name: Run snyk
uses: snyk/actions/python-3.10@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 comments on commit b39cb17

Please sign in to comment.