Skip to content

Bump octocrab from 0.18.1 to 0.19.0 #235

Bump octocrab from 0.18.1 to 0.19.0

Bump octocrab from 0.18.1 to 0.19.0 #235

Workflow file for this run

name: Cargo checks
on:
pull_request:
push:
branches:
- main
jobs:
cargo-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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