Skip to content

Commit

Permalink
#113 actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 13, 2022
1 parent 127a5cc commit af18eb7
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 57 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/codecov.yml
@@ -0,0 +1,25 @@
---
name: codecov
"on":
push:
branches:
- master
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- run: mvn install -Pjacoco
- uses: codecov/codecov-action@v1
with:
file: ./target/site/jacoco/jacoco.xml
fail_ci_if_error: true
33 changes: 33 additions & 0 deletions .github/workflows/mvn.yml
@@ -0,0 +1,33 @@
---
name: mvn
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: test
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
java: [11, 17]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- uses: actions/setup-ruby@v1
with:
ruby-version: 2.7
- run: gem install xcop
- run: mvn clean install -Pqulice --errors --batch-mode
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

32 changes: 0 additions & 32 deletions appveyor.yml

This file was deleted.

Empty file added src/test/aspect/.gitkeep
Empty file.

0 comments on commit af18eb7

Please sign in to comment.