Skip to content

Merge pull request #9 from 0xpr03/migrate_serenity #13

Merge pull request #9 from 0xpr03/migrate_serenity

Merge pull request #9 from 0xpr03/migrate_serenity #13

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install latest rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Test
run: cargo test
- name: Build
run: cargo build --all --release