-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (42 loc) · 1.11 KB
/
smode_laser_plugin.yml
File metadata and controls
45 lines (42 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: smode_laser
on: [push, pull_request]
jobs:
# Check code formatting in Rust library.
rustfmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path smode_laser/Cargo.toml --all -- --check
# Test the Rust library on windows.
cargo-test-windows:
strategy:
matrix:
version: [x86_64, i686]
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install llvm and clang
run: choco install llvm
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: ${{ matrix.version }}-pc-windows-msvc
override: true
- name: Run test
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path smode_laser\Cargo.toml --all --verbose