Skip to content

Commit

Permalink
G
Browse files Browse the repository at this point in the history
  • Loading branch information
KuilongCui committed Apr 10, 2024
1 parent 63fc2f7 commit fc8d781
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
tasks:
container:
runs-on: ubuntu-20.04
steps:
- run: ls
- run: echo $PWD
# setup
- uses: bazel-contrib/setup-bazel@0.8.1
- name: setup
uses: bazel-contrib/setup-bazel@0.8.1
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true

# build
- run: bazel build src/main:hello_world
- name: build
run: bazel build src/main:hello_world

# test
- run: bazel test test/...
- name: test
run: bazel test test/...

0 comments on commit fc8d781

Please sign in to comment.