Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/presubmit-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
branches: ['master']
pull_request:
branches: ['master']
workflow_dispatch: {}

jobs:
clang-format:
Expand Down Expand Up @@ -44,7 +45,7 @@
nix_path: nixpkgs=channel:nixos-unstable
- name: install Nix dependencies
if: ${{ matrix.container == null }}
run: nix-shell --run 'meson --buildtype=release --werror build && ninja -C build && meson test --print-errorlogs -C build'

Check warning on line 48 in .github/workflows/presubmit-c.yml

View workflow job for this annotation

GitHub Actions / lint

48:81 [line-length] line too long (128 > 80 characters)
- name: setup build directory
if: ${{ matrix.container != null }}
run: meson --werror build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/presubmit-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches: ['master']
pull_request:
paths: ['go/**', '.github/workflows/presubmit-go.yml']
workflow_dispatch: {}

defaults:
run:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/presubmit-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches: ['master']
pull_request:
paths: ['python/**', '.github/workflows/presubmit-python.yml']
workflow_dispatch: {}

defaults:
run:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/presubmit-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches: ['master']
pull_request:
paths: ['rust/**', '.github/workflows/presubmit-rust.yml']
workflow_dispatch: {}

defaults:
run:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/presubmit-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches: ['master']
pull_request:
paths: ['**.sh', '.github/workflows/presubmit-shell.yml']
workflow_dispatch: {}

jobs:
shellcheck:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/presubmit-yaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches: ['master']
pull_request:
paths: ['**.yml', '**.yaml']
workflow_dispatch: {}

jobs:
lint:
Expand Down
Loading