milcheck 0.2.6

A simple program that displays the status of your pacman mirrorlist and the Arch Linux lastest news right in your terminal
Documentation
name: Rust

on:
  push:
    tags:
      - v* # Push events to v* tags

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Lint
      run: cargo clippy
    - name: Test
      run: cargo test
    - name: Build
      run: cargo build --release --locked
    - name: Release
      uses: softprops/action-gh-release@v1
      with:
        files: target/release/milcheck
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}