21 lines
401 B
YAML
21 lines
401 B
YAML
name: check-spv
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
check-spv:
|
|
runs-on: native
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check
|
|
run: |
|
|
nix develop . --command cargo run --manifest-path compile-shaders/Cargo.toml -p compile-shaders-core
|
|
git diff --exit-code
|