Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Aug 5, 2022
1 parent 6ad0355 commit 1aee4b2
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 35 deletions.
12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

11 changes: 0 additions & 11 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: codecov
- master
jobs:
codecov:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
Expand Down
19 changes: 8 additions & 11 deletions .github/workflows/mvn.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
---
name: mvn
on:
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: test
maven-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
java: [11, 17]
runs-on: ${{ matrix.os }}
os: [ubuntu-20.04, windows-2022, macos-12]
java: [11, 13]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
Expand All @@ -26,8 +25,6 @@ jobs:
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
- run: java -version
- run: mvn -version
- run: mvn --errors --batch-mode clean install -Pqulice
15 changes: 15 additions & 0 deletions .github/workflows/pdd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: pdd
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pdd:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: g4s8/pdd-action@master
15 changes: 15 additions & 0 deletions .github/workflows/xcop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: xcop
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
xcop:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: g4s8/xcop-action@master

0 comments on commit 1aee4b2

Please sign in to comment.