Skip to content

Commit

Permalink
Merge 2345bef into fc05e54
Browse files Browse the repository at this point in the history
  • Loading branch information
Rusiek committed Jan 21, 2024
1 parent fc05e54 commit c21584c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: '12.x'
- run: cd backend && ./gradlew build && ./gradlew check && git add -A . && git diff-index --quiet HEAD || git commit --allow-empty -m "Lint code" && git push -u origin HEAD:master
- run: cd backend && ./gradlew build && ./gradlew check && git add -A . && git diff-index --quiet HEAD || git commit --allow-empty -m "Lint code" && git push origin HEAD:master

- name: Set up python
uses: actions/setup-python@v1
with:
python-version: '3.9'
- run: cd data_microservice && pip install -r requirements.txt && pylint app.py && git add -A . && git diff-index --quiet HEAD || git commit --allow-empty -m "Lint code" && git push -u origin HEAD:master
- run: cd data_microservice && pip install -r requirements.txt && pylint app.py && git add -A . && git diff-index --quiet HEAD || git commit --allow-empty -m "Lint code" && git push origin HEAD:master

0 comments on commit c21584c

Please sign in to comment.