Skip to content

chore: Remove out folder from git #18

chore: Remove out folder from git

chore: Remove out folder from git #18

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/[email protected]
- name: Pre-configure
run: |
sudo apt update -y
sudo apt upgrade -y
sudo apt install wayland-protocols libuwac0-dev libwayland-dev libasound2-dev libudev-dev libxkbcommon-dev -y
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run clippy
run: cargo clippy