jolly 0.2.0

small bookmarking launcher for desktop usage, developed with iced
name: CI Build

on:
  push:
    branches: [ "master" ]
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  format:
    runs-on: ubuntu-latest

    steps:
    - name: Checkout repository
      uses: actions/checkout@v3
      
    - name: Check Formatting
      run: cargo fmt --all --check
  
  test:
    strategy:
      matrix:
        os: [windows-latest, ubuntu-latest, macos-latest]
    runs-on: ${{ matrix.os }}

    steps:
    - name: Checkout repository
      uses: actions/checkout@v3

    - name: Determine MSRV
      shell: bash
      run: |
        msrv=$(grep rust-version Cargo.toml | cut -d '"' -f2)
        echo "MSRV=$msrv" >> $GITHUB_ENV

    - name: Install MSRV rustc
      uses: dtolnay/rust-toolchain@master
      with:
        toolchain: ${{ env.MSRV }}

    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose