Skip to content

Add changelog for 0.2.0 #106

Add changelog for 0.2.0

Add changelog for 0.2.0 #106

Workflow file for this run

on: [push, pull_request]
name: Run Tests
jobs:
testing:
name: testing-${{ matrix.toolchain }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
toolchain:
- 1.65.0
- stable
os:
- ubuntu-latest
- windows-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Log active toolchain
run: rustup show
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --release