Skip to content

Commit

Permalink
sacana v1.0.0
Browse files Browse the repository at this point in the history
Co-authored-by: FUKAYA Toru <[email protected]>
Co-authored-by: LWisteria <[email protected]>
Co-authored-by: Ryo MATSUMIYA <[email protected]>
  • Loading branch information
4 people committed Oct 1, 2020
0 parents commit 2ad683a
Show file tree
Hide file tree
Showing 15 changed files with 3,473 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
**/*.rs.bk
settings.json
25 changes: 25 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
image: "rust:latest"

before_script:
- apt-get update -yqq
- apt-get install -yqq --no-install-recommends libssl-dev

# Use cargo to test the project
check:stable:
tags:
- docker
script:
- rustup --version && rustup component add rustfmt clippy
- rustc --version && cargo --version
- cargo fmt --all -- --check
- cargo clippy

check:beta:
tags:
- docker
script:
- rustup default beta
- rustup --version && rustup component add rustfmt clippy
- rustc --version && cargo --version
- cargo fmt --all -- --check
- cargo clippy
Loading

0 comments on commit 2ad683a

Please sign in to comment.