Skip to content

Create CI and release actions #1

Create CI and release actions

Create CI and release actions #1

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose