openweathermap 0.2.4

easy access current weather data from OpenWeatherMap
Documentation
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