kickoff 0.7.2

Fast and minimal program launcher
on:
  push:
    branches:
      - main
  pull_request:

name: Continuous Integration

jobs:
  linux:
    name: linux
    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust:
          - stable
          - 1.66.1
    steps:
      - uses: actions/checkout@v3
      - uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: ${{ matrix.rust }}
          override: true
      - run: rustup component add clippy
      - run: sudo apt-get install -y libfontconfig-dev pkgconf libxkbcommon-dev

      - name: clippy
        uses: actions-rs/cargo@v1
        with:
          command: clippy
          args: -- -D warnings