mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-24 08:30:50 +00:00
45 lines
917 B
YAML
45 lines
917 B
YAML
name: test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
RUSTFLAGS: '--deny warnings'
|
|
|
|
jobs:
|
|
test-ubuntu:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get install -y alsa-base libasound2-dev libxkbcommon-dev
|
|
|
|
- name: Select rust version
|
|
run: |
|
|
rustup toolchain install 1.70 --profile minimal --no-self-update
|
|
rustup default 1.70
|
|
|
|
- name: Run tests with default features
|
|
run: |
|
|
cargo test --workspace
|
|
|
|
- name: Run tests with all features
|
|
run: |
|
|
cargo test --workspace #--features=std,fugit,femtos
|
|
|
|
- name: Run test with no_std
|
|
run: |
|
|
cargo test --workspace --no-default-features
|
|
|
|
|