Skip to content

try single

try single #50

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '21'
java-package: jdk
- id: ip-test
run: |
ips=$(hostname -I)
echo ${ips[0]}
- name: Public IP
id: ip
uses: haythem/[email protected]
- name: Run tests
run: |
mvn clean verify jacoco:report coveralls:report -Dcoveralls.token=${{ secrets.COVERALLS_TOKEN }}