Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Bump ctrlc from 3.4.2 to 3.4.4 #307

Bump ctrlc from 3.4.2 to 3.4.4

Bump ctrlc from 3.4.2 to 3.4.4 #307

Workflow file for this run

name: CI
on: [pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
run: cargo clippy
- name: Build and test
run: cargo test
build-macosx:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
run: cargo clippy
- name: Build
run: cargo test
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: rustfmt
run: cargo fmt --check