Skip to content

Update 5_deployment_and_testing.md #13

Update 5_deployment_and_testing.md

Update 5_deployment_and_testing.md #13

Workflow file for this run

name: Test deployment
on:
pull_request:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: sui-foundation/sui-move-intro-course/.github/actions/sui-cli@main
- run: sui -V
- run: ./.github/scripts/check.sh -e
shell: bash