Skip to content

update all state input to be lowercase like octocrab #28

update all state input to be lowercase like octocrab

update all state input to be lowercase like octocrab #28

Workflow file for this run

---
name: ci
on:
push:
branches: [master]
paths:
- 'src/*.rs'
- 'Cargo.toml'
pull_request:
branches: [master]
paths:
- 'src/*.rs'
- 'Cargo.toml'
jobs:
rust-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: lint
run: cargo fmt -- --check
- name: build
run: cargo build
- name: test
run: cargo test