Fix CI, unsubscribe from email notifications #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- "**" | |
tags-ignore: | |
- "v*" | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install system dependencies | |
run: apt update -y && apt install -y libgtk-3-dev | |
- name: Tests | |
run: cargo test | |
- name: Lints | |
run: cargo clippy -- -D warnings |