Skip to content

Commit

Permalink
set up CI workflow for building and testing on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
glowcoil committed Jun 4, 2023
1 parent 75e9d0d commit e8c8c6b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

on:
push:
branches:
master
pull_request:
branches:
master

env:
VST3_SDK_DIR: vst3sdk

jobs:
ci:
name: Build and run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Check out VST3 SDK
uses: actions/checkout@v3
with:
repository: coupler-rs/vst3_pluginterfaces
path: vst3sdk/pluginterfaces
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install libclang
run: |
sudo apt-get update
sudo apt-get install llvm-dev libclang-dev clang
- name: Build
run: cargo build --workspace --examples
- name: Run tests
run: cargo test --workspace

0 comments on commit e8c8c6b

Please sign in to comment.