Skip to content

build(deps): bump commons-io:commons-io from 2.16.1 to 2.17.0 #922

build(deps): bump commons-io:commons-io from 2.16.1 to 2.17.0

build(deps): bump commons-io:commons-io from 2.16.1 to 2.17.0 #922

Workflow file for this run

name: CWL Viewer Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Restore dependency cache
uses: actions/cache@v4.0.2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
- name: Install Licensee
run: gem install licensee
- name: Install system packages
run: |
sudo apt-get -qq update
sudo apt-get install graphviz python3-pip
sudo pip install cwltool
- name: Build and test with Maven
run: |
./mvnw test -B
- name: Coverage report
run: |
mvn prepare-package -DskipTests=true
mvn --errors jacoco:report coveralls:report --no-transfer-progress -DrepoToken=$COVERALLS_SECRET -DpullRequest=${{ github.event.number }}
env:
CI_NAME: github
COVERALLS_SECRET: ${{ secrets.GITHUB_TOKEN }}