Skip to content

Restructure Modules and Fix font loading #10

Restructure Modules and Fix font loading

Restructure Modules and Fix font loading #10

Workflow file for this run

name: Check
on:
pull_request:
paths:
- src/**
- Cargo.lock
- Cargo.toml
- .github/workflows/check.yml
push:
branches:
- main
paths:
- src/**
- Cargo.lock
- Cargo.toml
- .github/workflows/check.yml
# Fail on warnings
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo clippy --all-features
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo test --all-features