chore: update to newly created maintainer team (#42) #136
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2021 - for information on the respective copyright owner | |
# see the NOTICE file and/or the repository https://github.com/carbynestack/common. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: Artifacts | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
verification: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Verify changed files | |
uses: pre-commit/action@v2.0.3 | |
build: | |
runs-on: ubuntu-20.04 | |
needs: verification | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn install -Dskip.tests --batch-mode --update-snapshots --no-transfer-progress | |
test: | |
runs-on: ubuntu-20.04 | |
needs: verification | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Run Tests | |
run: mvn verify --activate-profiles coverage --batch-mode --no-transfer-progress | |
- name: Collect Jacoco reports | |
run: echo ::set-output name=reports::$(find . -regex '.*/target/site/jacoco/jacoco.xml' | tr '\n' ',' | sed 's/.$//') | |
id: jacoco | |
- uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ${{ steps.jacoco.outputs.reports }} | |
name: codecov |