Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit a14613d

Browse files
committed
Added github actions again
1 parent abd3ffd commit a14613d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/rust.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
15+
runs-on: windows-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
20+
- name: Install cargo-make
21+
uses: actions-rs/cargo@v1
22+
with:
23+
command: install
24+
args: --debug cargo-make
25+
26+
- name: Build
27+
run: cargo make build-debug

0 commit comments

Comments
 (0)