Skip to content

Commit

Permalink
:octocat: 使用 GitHub Actions 进行持续集成测试
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Jan 18, 2022
1 parent 8944c2f commit 5191c40
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build Test
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: '11'
cache: 'maven'
- name: Build with Maven
run: |
mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pci
mvn clean test jacoco:report coveralls:report -Pci
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit 5191c40

Please sign in to comment.