Skip to content

Commit

Permalink
Merge pull request #17 from gianzellweger/dev
Browse files Browse the repository at this point in the history
Release 0.3.3 🪨 🚀
  • Loading branch information
gianzellweger authored Feb 5, 2024
2 parents 2828494 + 29f91ea commit ac0daea
Show file tree
Hide file tree
Showing 9 changed files with 344 additions and 103 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ updates:
directory: "/"
target-branch: "dev"
schedule:
interval: "weekly"
interval: "daily"
24 changes: 21 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ jobs:
ubuntu_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get install -y libgtk-3-dev libsoup2.4-dev libjavascriptcoregtk-4.0-dev libwebkit2gtk-4.0-dev
- name: Switch to nightly
run: rustup default nightly
- name: Install Clippy
run: rustup component add clippy
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build
- name: Test
Expand All @@ -24,7 +30,13 @@ jobs:
windows_build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Switch to nightly
run: rustup default nightly
- name: Install Clippy
run: rustup component add clippy
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build
- name: Test
Expand All @@ -33,7 +45,13 @@ jobs:
macos_build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Switch to nightly
run: rustup default nightly
- name: Install Clippy
run: rustup component add clippy
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Login
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
If you're in this deep and haven't understood that this is satire and a joke, please read again. In general, I don't really need help because nobody will actually use this. However, if you are feeling really quirky today you can add some additional trolls or fix existing ones because they're actually not that well programmed. Be aware though: Many terrible grammar, code style and consistency choices were made on purpose. I will not accept your PR if you report those.
If you're in this deep and haven't understood that this is satire and a joke, please read again. In general, I don't really need help because nobody will actually use this. However, if you are feeling really quirky today you can add some additional trolls or fix existing ones because they're actually not that well programmed. Be aware though: Many terrible grammar, code style and consistency choices were made on purpose. I will not accept your PR if you report those. If you're wondering, what the motivation for this project is/was, read [this](MOTIVATION.md)
Loading

0 comments on commit ac0daea

Please sign in to comment.