mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Use frozen and locked builds Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
24 lines
456 B
YAML
24 lines
456 B
YAML
name: bindings/ffi
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Test FFI
|
|
run: |
|
|
cargo fetch
|
|
cargo build -r --frozen
|
|
cargo clippy --all-targets --no-deps -- -Dwarnings
|
|
working-directory: ./bindings/ffi
|