Skip to content

Commit

Permalink
chore: initial CI setup (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvolin authored Aug 15, 2023
1 parent c391f0b commit fbf12bc
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
[build]
target = "wasm32-unknown-unknown"

[test]
target = "x86_64-unknown-linux-gnu"
75 changes: 75 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: CI

on:
push:
branches:
- main
pull_request:

jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: Run format
run: cargo fmt -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: Set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys:
cargo-${{ hashFiles('**/Cargo.lock') }}
cargo-

- name: Run clippy
run: cargo clippy --all -- -D warnings

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: Set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys:
cargo-${{ hashFiles('**/Cargo.lock') }}
cargo-

- name: Install nextest
uses: taiki-e/install-action@nextest

- name: Set up dfx
uses: aviate-labs/[email protected]
with:
dfx-version: 0.14.3

- name: Build wasm
run: cargo build --release

- name: Run tests
run: |
dfx identity new gh_action --storage-mode plaintext
dfx identity use gh_action
dfx start --background --artificial-delay 5 --clean
cargo nextest run --target x86_64-unknown-linux-gnu

0 comments on commit fbf12bc

Please sign in to comment.