Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit561c838

Browse files
authored
Add CI
1 parent2e6dd32 commit561c838

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

‎.github/workflows/rust.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
2+
#
3+
# While our "example" application has the platform-specific code,
4+
# for simplicity we are compiling and testing everything on the Ubuntu environment only.
5+
# For multi-OS testing see the `cross.yml` workflow.
6+
7+
on:[push, pull_request]
8+
9+
name:Quickstart
10+
11+
jobs:
12+
check:
13+
name:Check
14+
runs-on:ubuntu-latest
15+
steps:
16+
-name:Checkout sources
17+
uses:actions/checkout@v2
18+
19+
-name:Install stable toolchain
20+
uses:actions-rs/toolchain@v1
21+
with:
22+
profile:minimal
23+
toolchain:nightly
24+
override:true
25+
26+
-name:Run cargo check
27+
uses:actions-rs/cargo@v1
28+
continue-on-error:false
29+
with:
30+
command:check

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp