Don't wait for an interval for the first poll of subscription #390
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - 'LICENSE' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - 'LICENSE' | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - name: Install nightly | |
| run: | | |
| rustup toolchain install nightly | |
| rustup component add rustfmt --toolchain nightly | |
| - name: Restore cargo caches | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Check formatting | |
| run: cargo +nightly fmt --all --verbose -- --check | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - name: Restore cargo caches | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run check with default features | |
| run: cargo check --verbose | |
| - name: Run tests with all features | |
| env: | |
| CLOSELY_TEST_TWITTER_COOKIES: ${{ secrets.CLOSELY_TEST_TWITTER_COOKIES }} | |
| run: cargo test --all-features --verbose | |
| clippy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - name: Restore cargo caches | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run clippy | |
| env: | |
| CLOSELY_TEST_TWITTER_COOKIES: ${{ secrets.CLOSELY_TEST_TWITTER_COOKIES }} | |
| run: cargo clippy --all-features --tests --examples -- -D warnings -A dead-code |