Skip to content

Commit

Permalink
unzip convert
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 12, 2023
1 parent b2f082d commit 82e16c8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/mvn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ on:
- master
paths-ignore: ['paper/**', 'sandbox/**']
jobs:
test:
name: Tests
mvn:
name: mvn
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-12]
java: [11, 17, 18]
runs-on: ${{ matrix.os }}
env:
CONVERT_PATH: /tmp/convert
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
Expand All @@ -29,4 +31,8 @@ jobs:
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- run: |
mkdir $CONVERT_PATH
wget https://public.yegor256.com/convert.zip -O /tmp/convert.zip
unzip /tmp/convert.zip -o -d $CONVERT_PATH
- run: mvn clean install -Pqulice --errors --batch-mode

0 comments on commit 82e16c8

Please sign in to comment.