use Vec when generating nonce instead of creating one each time #261
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: tests | |
on: | |
push: | |
branches: [ main, release ] | |
pull_request: | |
branches: [ main, release ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
version: | |
uses: radumarias/rencfs/.github/workflows/version_reusable.yml@main | |
build_and_test: | |
name: build and test | |
needs: [version] | |
uses: radumarias/rencfs/.github/workflows/build_and_tests_reusable.yml@main | |
secrets: inherit | |
package: | |
needs: [version, build_and_test] | |
uses: radumarias/rencfs/.github/workflows/package_reusable.yml@main | |
with: | |
upload_artifacts: false | |
version: ${{ needs.version.outputs.version }} | |
secrets: inherit | |
permissions: | |
id-token: write | |
packages: write | |
contents: read | |
attestations: write |