Bump github.com/cloudflare/circl from 1.3.3 to 1.3.7 #94
Workflow file for this run
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: "Validations" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
env: | |
FORCE_COLOR: true | |
jobs: | |
Validations: | |
# Note: changing this job name requires making the same update in the .github/workflows/release.yaml pipeline | |
name: "Validations" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bootstrap environment | |
uses: ./.github/actions/bootstrap | |
- name: Run all validations | |
run: make pr-validations | |
WindowsValidations: | |
name: "Windows units" | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install make | |
run: "choco install make" | |
- name: run units | |
run: "make unit" |