Skip to content

Updated github actions. #611

Updated github actions.

Updated github actions. #611

Workflow file for this run

name: Test on Push
# Trigger the workflow on push or pull request,
# but only for the main branch
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test_Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: dependencies
run: |
sudo apt-get update
sudo apt-get install -y libclang-dev libgtk-3-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- name: Test
run: |
cargo test
cargo test --features flatpak
test_Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- name: Rust Cache
id: rust_cache
uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test
# test_Macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - name: Install Rust toolchain
# uses: dtolnay/rust-toolchain@stable
# with:
# profile: minimal
# toolchain: stable
# components: clippy
# override: true
# - name: Rust Cache
# id: rust_cache
# uses: Swatinem/rust-cache@v2
# - name: Test
# run: cargo test