Skip to content

[3/?] Add ability to run code examples in the playground: Fetch tutorial snippet from URL by file name #455

[3/?] Add ability to run code examples in the playground: Fetch tutorial snippet from URL by file name

[3/?] Add ability to run code examples in the playground: Fetch tutorial snippet from URL by file name #455

Workflow file for this run

name: Cargo checks
on:
pull_request:
push:
branches:
- main
jobs:
cargo-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: setup rust toolchain
run: rustup show
- name: install rust toolchain components
run: rustup component add rustfmt clippy
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all
- name: build docker image
run: docker build docker -t ponylang-playpen
- name: Cargo test
run: cargo test --all -- --nocapture