Skip to content

feat: initial implement #2

feat: initial implement

feat: initial implement #2

Workflow file for this run

name: CI
on:
push:
pull_request:
types: [opened, synchronize]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build And Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- name: Setup
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
rustup component add clippy
- run: cargo build --verbose
- run: cargo test --verbose
- run: cargo clippy --verbose