Skip to content

WIP experiment with github actions #318

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: CI

on:
pull_request:
push:
# schedule:
# - cron: "00 01 * * *"

jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
#- windows-latest
rust:
- stable
#- beta
#- nightly
#- "1.32.0"
steps:
- name: checkout the source code
uses: actions/checkout@v1
with:
fetch-depth: 2

- name: install dependencies (macos)
run: brew update && brew install zmq
if: matrix.os == 'macos-latest'
#
# - name: install msys2
# uses: eine/setup-msys2@v0
# with:
# update: true

- name: install dependencies (ubuntu)
run: sudo apt -y install libzmq3-dev libsodium-dev
if: matrix.os == 'ubuntu-latest'

- name: install Rust
uses: actions-rs/toolchain/@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: clippy

- name: Build
uses: actions-rs/cargo@v1
with:
command: build

- name: Run Tests
uses: actions-rs/cargo@v1
with:
command: test

- name: Generate Docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --all-features --no-deps