Skip to content

Upgraded github actions #29

Upgraded github actions

Upgraded github actions #29

Workflow file for this run

---
name: Java CI
on: # yamllint disable-line rule:truthy
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn -B clean install
- name: Codecov
uses: codecov/[email protected]