Nothing Special   »   [go: up one dir, main page]

Skip to content

chore: Optimize code at 2024 #80

chore: Optimize code at 2024

chore: Optimize code at 2024 #80

Workflow file for this run

name: Build and test
on:
push:
branches:
- master
pull_request:
jobs:
build_and_test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable]
steps:
- uses: actions/checkout@v2
- name: Install latest ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Run basic cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests --all-features
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all --bins --examples --tests --all-features