Skip to content

Commit

Permalink
ci: switch to github
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Jun 24, 2024
1 parent 91e7644 commit 4d54fe7
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 32 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
branches:
- master
pull_request:

jobs:
build:

runs-on: ubuntu-22.04

steps:

- uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: temurin

- name: Build with Maven
run: mvn -B test

- name: Run integration tests
run: mvn -B integration-test -Pits
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

0 comments on commit 4d54fe7

Please sign in to comment.