Skip to content

Commit

Permalink
Merge pull request #14 from dagit/development
Browse files Browse the repository at this point in the history
Merge updates
  • Loading branch information
dagit authored Jun 13, 2023
2 parents a9f93f7 + c748575 commit a55287f
Show file tree
Hide file tree
Showing 6 changed files with 394 additions and 1,049 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/onpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install deps
run: sudo apt-get install -y wget libfuse-dev libgtk-3-dev

- name: Run cargo check
run: cargo check

Expand All @@ -31,6 +34,9 @@ jobs:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install deps
run: sudo apt-get install -y wget libfuse-dev libgtk-3-dev

- name: Run cargo test
run: cargo test

Expand All @@ -46,6 +52,9 @@ jobs:
with:
components: rustfmt, clippy

- name: Install deps
run: sudo apt-get install -y wget libfuse-dev libgtk-3-dev

- name: Run cargo fmt
run: cargo fmt --all -- --check

Expand Down Expand Up @@ -97,7 +106,7 @@ jobs:
- name: Linux dependencies
if: ${{ matrix.is-linux }}
run: |
sudo apt-get install -y wget libfuse-dev
sudo apt-get install -y wget libfuse-dev libgtk-3-dev
cargo install --force cargo-appimage
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$(uname -m).AppImage -O appimagetool
chmod a+x appimagetool
Expand Down
Loading

0 comments on commit a55287f

Please sign in to comment.