Skip to content

Commit

Permalink
fix: removed nightly and set dep to what miniquad needs
Browse files Browse the repository at this point in the history
  • Loading branch information
suspistew committed Mar 9, 2021
1 parent e3d1c4b commit 7047489
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [macos-latest, windows-latest, ubuntu-18.04]
toolchain: [stable, beta, nightly]
os: [macos-latest, windows-latest, ubuntu-latest]
toolchain: [stable, beta]
steps:
- uses: actions/checkout@v2

- name: install linux deps
run: |
sudo apt update
sudo apt install gcc pkg-config openssl libasound2-dev cmake build-essential python3 libfreetype6-dev libexpat1-dev libxcb-composite0-dev libssl-dev libx11-dev pulseaudio
sudo apt install gcc cmake build-essential libx11-dev libxi-dev libgl1-mesa-dev
if: contains(matrix.os, 'ubuntu')

- name: install ${{ matrix.toolchain }} toolchain
Expand All @@ -42,13 +42,6 @@ jobs:
- uses: seanmiddleditch/gha-setup-ninja@master
if: matrix.os == 'windows-latest'

- run: rustup component add rustfmt
if: matrix.toolchain == 'nightly' && matrix.os == 'ubuntu-latest'

- run: cargo +nightly fmt --all -- --check
if: matrix.toolchain == 'nightly' && matrix.os == 'ubuntu-latest'

- run: rustup component add clippy
if: matrix.toolchain == 'nightly'
- run: cargo check --workspace --all-features --all-targets

- run: cargo test --workspace --all-features --all-targets

0 comments on commit 7047489

Please # to comment.