Skip to content

chore(deps-dev): bump org.testng:testng from 7.4.0 to 7.5.1 #730

chore(deps-dev): bump org.testng:testng from 7.4.0 to 7.5.1

chore(deps-dev): bump org.testng:testng from 7.4.0 to 7.5.1 #730

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn clean test cobertura:cobertura
- name: Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}