gh-config 0.6.0

Loads config and hosts for gh CLI.
Documentation
name: Rust

on:
  push: ~
  release:
    types:
      - published

env:
  CARGO_TERM_COLOR: always

permissions:
  checks: write
  contents: read

jobs:
  checks:
    runs-on: ubuntu-24.04
    steps:
      - uses: actions/checkout@v6

      - uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt,clippy

      - uses: Swatinem/rust-cache@v2

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

      - name: Run clippy
        uses: giraffate/clippy-action@v1
        with:
          clippy_flags: -- -Dwarnings
          reporter: github-pr-check
          fail_on_error: true

  build:
    needs: checks
    strategy:
      matrix:
        os:
          - windows-2025
          - macos-15
          - ubuntu-24.04
          - ubuntu-24.04-arm
        include:
          - os: windows-2025
            tests: true
          - tests: false # Keychain requires user interaction, not able to test on CI
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v6

      - uses: dtolnay/rust-toolchain@stable

      - uses: Swatinem/rust-cache@v2

      - name: Authenticate gh CLI
        run: echo "${{ github.token }}" | gh auth login --with-token --secure-storage --hostname "github.com" --git-protocol "https"

      - name: Build
        run: cargo build --all-features

      - name: Run tests
        if: '${{ matrix.tests }}'
        run: cargo test --all-features

  deploy:
    runs-on: ubuntu-24.04
    if: ${{ github.event_name == 'release' }}
    needs:
      - checks
    steps:
      - uses: actions/checkout@v6

      - uses: dtolnay/rust-toolchain@stable

      - name: Log into crates.io
        run: cargo login '${{ secrets.CRATES_IO_TOKEN }}'

      - name: Publish to crates.io
        run: cargo publish --allow-dirty