Skip to content

chore: initial commit with project structure #2

chore: initial commit with project structure

chore: initial commit with project structure #2

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
jobs:
build-and-test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build and test
run: |
cargo build --verbose
cargo test --verbose