feat: Implement gtk4 client #382
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: Rust | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
- staging | |
- trying | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
runs-on: ${{ matrix.os }} | |
env: | |
AUTHY_API_KEY: anything-here | |
steps: | |
- name: Install dependencies | |
if: "${{ matrix.os == 'ubuntu-latest'}}" | |
run: sudo apt install libdbus-1-dev | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --verbose | |
- name: Clippy | |
run: cargo clippy | |
- name: Run tests | |
shell: bash | |
run: RUST_BACKTRACE=full cargo test --verbose | |
- name: Formatting | |
run: cargo fmt -- --check | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
if: ${{ github.ref == 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create bump and changelog | |
# After commitizen can bump Cargo.lock files, rever this to their own implementation | |
uses: jaysonsantos/commitizen-action@custom-commitizen-install | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main | |
changelog_increment_filename: body.md | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
body_path: "body.md" | |
tag_name: ${{ env.REVISION }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }} | |
ci-success: | |
name: ci | |
if: ${{ success() }} | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: CI succeeded | |
run: exit 0 |