Skip to content

Commit

Permalink
Disable CI runs for stable / beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo-Zhixing committed Sep 23, 2022
1 parent d08e730 commit 735b555
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,7 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- run: cargo test --release
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! Load MagicaVoxel .vox files into Rust
#![feature(let_chains)]

extern crate byteorder;
#[cfg(test)]
Expand Down Expand Up @@ -216,8 +217,6 @@ pub mod placeholder {

#[cfg(test)]
mod tests {
use std::collections::HashMap;

use super::*;
use avow::vec;

Expand Down

0 comments on commit 735b555

Please sign in to comment.