Skip to content

Fix wrong handling of version #24

Fix wrong handling of version

Fix wrong handling of version #24

Workflow file for this run

name: CI
on:
pull_request:
types: [ opened, reopened, synchronize ]
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Check format
run: cargo fmt --check
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build
- name: Run tests
run: cargo test