-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathconfig.yaml
37 lines (35 loc) · 935 Bytes
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# configure vscode yaml support https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml
# yaml-language-server: $schema=https://fasterci.com/config.schema.json
workflows:
- &build_workflow
name: Faster CI / build (6.5.0)
env:
USE_BAZEL_VERSION: "6.5.0"
image: us.gcr.io/fasterci/bazelbuilder:5e59f651dbb5
on:
push:
branches:
- main
pull_request:
branches:
- "**"
steps:
- name: Build & test
bazel:
build_targets:
- //...
test_targets:
- //...
- name: Build & test examples
working-directory: examples
bazel:
build_targets:
- //...
test_targets:
- //...
- name: Check
run: bazel run //:buildifier-check
- <<: *build_workflow
name: Faster CI / build (5.4.1)
env:
USE_BAZEL_VERSION: "5.4.1"