Skip to content

Commit

Permalink
Merge pull request #8 from splitio/AUT-1170
Browse files Browse the repository at this point in the history
CI workflow added
  • Loading branch information
splitadricejas authored Oct 4, 2021
2 parents 1fb8a37 + 6910de3 commit 3983d6a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 24 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:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
maven-install:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up JDK 8
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '8'
cache: 'maven'

- name: Build with Maven
run: mvn --batch-mode -T 1C -U install -Dgpg.skip
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

0 comments on commit 3983d6a

Please sign in to comment.