Skip to content

generate bindings during build #102

generate bindings during build

generate bindings during build #102

Workflow file for this run

name: Health check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
CROS_LIBVA_H_PATH: ${{ github.workspace }}/work
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Check out libva"
run: |
curl -O -L https://github.com/intel/libva/releases/download/2.22.0/libva-2.22.0.tar.bz2 && \
tar xf libva-2.22.0.tar.bz2 --one-top-level=work --strip-components 1
- name: Build
run: cargo build --all-features --verbose --workspace --tests --examples
- name: Clippy
run: cargo clippy --all-features --workspace --tests --examples
- name: Run tests
run: cargo test --verbose
- name: Format
run: cargo fmt --check --all