Skip to content

Added Vulkan pipeline and render pass #17

Added Vulkan pipeline and render pass

Added Vulkan pipeline and render pass #17

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy --verbose -- -D warnings