Skip to content

Make a browser compatible rate limiter #25

Make a browser compatible rate limiter

Make a browser compatible rate limiter #25

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install OpenSSL
run: sudo apt-get install libssl-dev
- name: Build
run: cargo build --verbose
- name: Run tests (All Features)
run: cargo test --verbose --all-features
- name: Run tests (No Default Features)
run: cargo test --verbose --no-default-features