Skip to content

parsing questions back and forth #9

parsing questions back and forth

parsing questions back and forth #9

Workflow file for this run

name: Build Binaries
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allow one concurrent deployment
concurrency:
group: "build"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Cargo Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Cargo Test
uses: actions-rs/cargo@v1
with:
command: test