24 строки
408 B
YAML
24 строки
408 B
YAML
on: [push]
|
|
|
|
name: windows
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
|
|
- name: Build tests
|
|
run: cargo test --verbose --no-run
|
|
|
|
- name: Run tests
|
|
run: cargo test --verbose
|