Skip to content

Commit

Permalink
Initial test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
m-czernek committed Jan 15, 2024
1 parent 0fdd11a commit 280aa90
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/python-checkstyle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Java checkstyle

on:
# push:
# branches:
# - master
# paths:
# - 'java/**.java'
# - 'java/**.xml'
# - '.github/workflows/java-checkstyle.yml'
pull_request:
types:
- opened
- reopened
- synchronize
# paths:
# # We also trigger on non-java code changes since this triggers sonarcloud scanner after
# - '**.py'
# - 'web/html/src/**.ts'
# - 'web/html/src/**.tsx'
# - 'java/**.java'
# - 'java/**.xml'
# - '.github/workflows/java-checkstyle.yml'

jobs:
checkstyle:
runs-on: ubuntu-latest
container: registry.opensuse.org/home/mczernek/containers/opensuse_factory_containerfile/uyuni-lint:latest

steps:
- uses: actions/checkout@v4

- name: Test container dependencies
run: |
black --version
pylint --version
ls /github/workspace

0 comments on commit 280aa90

Please sign in to comment.