Skip to content

Use BASE64_MIME_PERMISSIVE to allow trailing bits in b64 data #74

Use BASE64_MIME_PERMISSIVE to allow trailing bits in b64 data

Use BASE64_MIME_PERMISSIVE to allow trailing bits in b64 data #74

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
stable:
name: Run tests on stable rust
runs-on: ubuntu-latest
steps:
- name: Get latest stable Rust
run: rustup toolchain install stable --profile minimal
- name: Check out source
uses: actions/checkout@v2
- name: Run tests
run: cargo test --all
beta:
name: Run tests on beta rust
runs-on: ubuntu-latest
steps:
- name: Get latest beta Rust
run: rustup toolchain install beta --profile minimal
- name: Check out source
uses: actions/checkout@v2
- name: Run tests
run: cargo test --all
nightly:
name: Run tests on nightly rust
runs-on: ubuntu-latest
steps:
- name: Get latest nightly Rust
run: rustup toolchain install nightly --profile minimal
- name: Check out source
uses: actions/checkout@v2
- name: Run tests
run: cargo test --all
msrv:
name: Run tests on mininum supported rust version
runs-on: ubuntu-latest
steps:
- name: Get minimum supported Rust
run: rustup toolchain install 1.51.0 --profile minimal
- name: Check out source
uses: actions/checkout@v2
- name: Run tests
run: cargo test --all