vpncloud/.github/workflows/build.yml

20 lines
362 B
YAML
Raw Normal View History

2019-11-14 21:20:25 +00:00
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
2019-11-14 21:33:22 +00:00
- uses: actions/checkout@v1
2019-12-22 16:39:23 +00:00
- name: Install latest nightly
run: rustup toolchain install 1.40.0
- name: Set default toolchain
run: rustup default 1.40.0
2019-11-14 21:20:25 +00:00
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose