Skip to content

Fix Added some test and fixed some others #140

Fix Added some test and fixed some others

Fix Added some test and fixed some others #140

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main", "develop" ]
env:
CARGO_TERM_COLOR: always
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --workspace
test-all:
runs-on: ubuntu-latest
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v3
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Install wasm-pack
run: cargo install wasm-pack
- name: Run tests
run: make run-all-tests
deploy:
runs-on: ubuntu-latest
needs: test-all
if: success() && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: publish
run: cargo publish -p rscel --token ${{ secrets.CRATES_IO_API_KEY }}