mirror of https://github.com/dswd/vpncloud.git
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
|
name: Checks
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
check:
|
||
|
name: Check
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
profile: minimal
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
- uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: check
|
||
|
test:
|
||
|
name: Test Suite
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
profile: minimal
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
- uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: test
|
||
|
coverage:
|
||
|
name: Coverage
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Install stable toolchain
|
||
|
uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
- name: Run cargo-tarpaulin
|
||
|
uses: actions-rs/tarpaulin@v0.1
|
||
|
with:
|
||
|
version: '0.9.0'
|
||
|
args: '-o Html -- --test-threads=1'
|
||
|
- name: Archive code coverage results
|
||
|
uses: actions/upload-artifact@v1
|
||
|
with:
|
||
|
name: code-coverage-report
|
||
|
path: tarpaulin-report.html
|