fixup! ✨ Fix issue #24: Use GitHub GraphQL API instead of REST API #213
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out ⬅️ | |
| uses: actions/checkout@v2 | |
| - name: Install stable Rust 🦀 | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| components: rustfmt, clippy | |
| - name: Check code format 💄 | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: fmt | |
| args: -- --check | |
| - name: Check code style 👮 | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: clippy | |
| args: -- -Dwarnings | |
| - name: Run tests 🔎 | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test |