Skip to content

Add testing print statement in main function #9

Add testing print statement in main function

Add testing print statement in main function #9

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: self-hosted
container:
image: rust:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose