Skip to content

KC-1: initial commit #3

KC-1: initial commit

KC-1: initial commit #3

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- name: Update Toolchain
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo --version && cargo build --verbose
- name: Run tests
run: cargo test --verbose