Skip to content

Bump octocrab from 0.38.0 to 0.39.0 #504

Bump octocrab from 0.38.0 to 0.39.0

Bump octocrab from 0.38.0 to 0.39.0 #504

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