awaitility 0.4.1

Awaitility for Rust
Documentation
name: Release-CI

on:
  push:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest
    if: "!contains(github.event.head_commit.message, 'ci skip')"
    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
    - name: Login
      run: cargo login ${{secrets.CRATE_IO_LOGIN_TOKEN}}
    - name: Publish
      run: cargo publish --verbose