Skip to content

Bump version to 0.2.2 #16

Bump version to 0.2.2

Bump version to 0.2.2 #16

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
# All generated code should be running on stable now
rust: [stable]
os:
# Check compilation works on common OSes
# (i.e. no path issues)
- ubuntu-latest
- macOS-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Build
run: cargo build
- name: Test
run: cargo test