Skip to content

Commit

Permalink
move to github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Gregor Zeitlinger <gregor.zeitlinger@grafana.com>
  • Loading branch information
zeitlinger committed Sep 27, 2024
1 parent 4ce0d15 commit c101e3d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .circleci/config.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
cache: 'maven'
- name: Shaded dependencies
run: |
cd prometheus-metrics-shaded-dependencies
../mvnw clean install
- name: Run the Maven verify phase
run: |
./mvnw clean install
./mvnw javadoc:jar

0 comments on commit c101e3d

Please sign in to comment.