fix: respect sortable setting on on TagFields. #259
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
name: Integration | |
on: | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.mv2/repository | |
key: om-${{hashFiles('**/pom.xml')}} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
- run: mvn dependency:go-offline | |
- name: Build | |
run: mvn clean process-test-classes verify | |
- name: codecov | |
run: | | |
curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov |