Skip to content

Bump the version to 0.2.4. #9

Bump the version to 0.2.4.

Bump the version to 0.2.4. #9

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-ubuntu:
name: Build on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Build examples
run: cargo build --verbose --examples
- name: Run tests
run: cargo test --verbose
build-windows:
name: Build on Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Build examples
run: cargo build --verbose --examples
- name: Run tests
run: cargo test --verbose