i3owm 0.2.18

Weather and ISS spotting extension for i3status
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always
  OWM_APIKEY: ${{ secrets.APIKEY }}
  
jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose
    - name: Generate documentation
      run: cargo doc --verbose
    - name: Run tests
      run: cargo test --verbose