Add implicit assertion to test vectors for v3/v4. #2
Workflow file for this run
This file contains hidden or 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: Publish | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: eclipse-temurin:17.0.18_8-jdk-alpine-3.23 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Gradle build | |
| run: | | |
| VERSION=${{ github.ref_name }} | |
| VERSION=${VERSION#v} | |
| export VERSION | |
| echo "Publish $VERSION" | |
| ./gradlew lintKotlin check jacocoTestReport publishAggregationToCentralPortal --no-daemon | |
| - name: Codecov - Install dependencies | |
| run: | | |
| apk add --no-cache bash git curl | |
| - name: Codecov - Upload | |
| uses: codecov/codecov-action@v5.5.2 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |