diff options
author | George Melikov <[email protected]> | 2020-08-12 20:46:26 +0300 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2020-08-13 14:59:24 -0700 |
commit | f67f5832eca415055e1eaf6cdc100f24ae53487a (patch) | |
tree | 7bb05f77bddbb568ab00882afeb3a5bae75e242f /.github | |
parent | 42d4a8e5feadd2e9d95687656701c3dcca4fb23a (diff) |
Github workflow: checkstyle
Use github workflow to run checkstyle
- use free (for OS projects) resources
- starts for every commit and branch
- work on forks, contributors may use it
before creating PRs
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: George Melikov <[email protected]>
Closes #10705
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/checkstyle.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml new file mode 100644 index 000000000..b31afe5d2 --- /dev/null +++ b/.github/workflows/checkstyle.yaml @@ -0,0 +1,27 @@ +name: checkstyle + +on: + push: + pull_request_target: + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + ref: ${{ github.event.pull_request.head.sha }} + - name: Install dependencies + run: | + sudo apt-get install --yes -qq build-essential autoconf libtool gawk alien fakeroot linux-headers-$(uname -r) + sudo apt-get install --yes -qq zlib1g-dev uuid-dev libattr1-dev libblkid-dev libselinux-dev libudev-dev libssl-dev python-dev python-setuptools python-cffi python3 python3-dev python3-setuptools python3-cffi + # packages for tests + sudo apt-get install --yes -qq parted lsscsi ksh attr acl nfs-kernel-server fio + sudo apt-get install --yes -qq mandoc flake8 # devscripts - enable then bashisms fixed + - name: Prepare + run: | + sh ./autogen.sh + ./configure + - name: Checkstyle + run: | + make checkstyle |