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 c113f50 + 1f25cca commit 934b3d3Copy full SHA for 934b3d3
2 files changed
.github/workflows/console.yaml
@@ -0,0 +1,19 @@
1
+name: Console
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - "console/"
7
+ pull_request:
8
9
10
11
+jobs:
12
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v6
17
+ - name: Build the console container
18
+ run: |
19
+ make console-build
.github/workflows/go.yml
@@ -1,6 +1,12 @@
name: Go
-on: [push, pull_request]
+ paths-ignore:
+ - 'console/**'
permissions:
contents: read
0 commit comments