Skip to content

Commit

Permalink
ci: build test (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks authored Jul 24, 2023
1 parent cd713b3 commit 50daaac
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ci

on:
pull_request:
push:
branches:
- main

defaults:
run:
shell: bash

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
distribution: zulu
- name: build
run: ./bin/build-all.sh
2 changes: 2 additions & 0 deletions bin/build-all.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -e

d="$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"

cd $d/../monitoring
Expand Down

0 comments on commit 50daaac

Please sign in to comment.