This is an automated email from the ASF dual-hosted git repository.

nacx pushed a commit to branch gha
in repository https://gitbox.apache.org/repos/asf/jclouds.git


The following commit(s) were added to refs/heads/gha by this push:
     new bf543b42ce Added GHA
bf543b42ce is described below

commit bf543b42ceeeb0645ac655c404b4e141c3934716
Author: Ignasi Barrera <ign...@tetrate.io>
AuthorDate: Tue Feb 7 18:05:36 2023 +0100

    Added GHA
---
 .github/workflows/ci.yaml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
new file mode 100644
index 0000000000..a9a22950a0
--- /dev/null
+++ b/.github/workflows/ci.yaml
@@ -0,0 +1,20 @@
+name: CI
+
+on:
+  push:
+    branches: [master, gha]
+  pull_request:
+    branches: [master]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v3
+      - uses: actions/setup-java@v3
+        with:
+          java-version: "8"
+          distribution: oracle
+          cache: maven
+      - name: Build
+        run: mvn clean verify checkstyle:checkstyle -B -q 
-Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdoc,src

Reply via email to