ci: added a github action to check if the vendored deps should be upd… #5
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["main"] | |
name: Check Latest Dependencies Are Vendored | |
permissions: read-all | |
jobs: | |
check-vendor: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ensure latest dependencies are vendored | |
working-directory: ./antidotum/tergo/src/rust | |
run: | | |
sh ./check_vendor_updates.sh |