We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c6642c + d7d7349 commit e7618a4Copy full SHA for e7618a4
.github/workflows/lint.yml
@@ -1,7 +1,7 @@
1
name: Lint Code Base
2
3
on:
4
- push:
+ pull_request:
5
branches-ignore:
6
- 'master'
7
.github/workflows/main.yml
@@ -1,6 +1,6 @@
name: Test and build
-on: [push]
+on: [pull_request]
jobs:
build:
@@ -16,7 +16,7 @@ jobs:
16
run: |
17
sudo apt-get update -y
18
sudo apt-get install -y devscripts debhelper moreutils fakeroot jq pigz
19
- wget "https://storage.googleapis.com/shellcheck/shellcheck-v0.7.0.linux.x86_64.tar.xz"
+ wget "https://github.com/koalaman/shellcheck/releases/download/v0.7.0/shellcheck-v0.7.0.linux.x86_64.tar.xz"
20
tar --xz -xvf "shellcheck-v0.7.0.linux.x86_64.tar.xz"
21
sudo cp shellcheck-v0.7.0/shellcheck /usr/bin/shellcheck
22
if: matrix.os == 'ubuntu-latest'
0 commit comments