Skip to content

Improve README wording. #4

Improve README wording.

Improve README wording. #4

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