Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add egui-material-icons & move workspace dependencies #38

Merged
merged 10 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install packages (Linux)
if: runner.os == 'Linux'
uses: awalsh128/[email protected]
with:
packages: libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libgtk-3-dev # libgtk-3-dev is used by rfd
version: 1.0
execute_install_scripts: true

lucasmerlin marked this conversation as resolved.
Show resolved Hide resolved
- uses: actions/checkout@v4

- name: Set up cargo cache
Expand All @@ -23,7 +31,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features --workspace --exclude egui_webview --exclude egui_flex -- -D warnings
args: --all-targets --all-features --workspace -- -D warnings

- name: RustFmt
uses: actions-rs/cargo@v1
Expand All @@ -35,7 +43,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --workspace --exclude egui_webview
args: --all-features --workspace

- name: Cargo Doc
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down
Loading
Loading