More testing and default functions (#47) #171
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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-rscel: | |
| 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 rscel | |
| run: cargo publish -p rscel --token ${{ secrets.CRATES_IO_API_KEY }} | |
| deploy-rscel-macro: | |
| 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 rscel-macro | |
| run: cargo publish -p rscel-macro --token ${{ secrets.CRATES_IO_API_KEY }} |