Skip to content

version bump

version bump #17

Workflow file for this run

name: main
on:
push:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
container:
image: rust:latest
env:
CI: true
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Check
run: cargo check --message-format short
- name: Build
run: cargo build
- name: Test
run: cargo test