Skip to content

Add some hardcoded GraphQL bullshit #43

Add some hardcoded GraphQL bullshit

Add some hardcoded GraphQL bullshit #43

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy, rustfmt
- name: Install protoc
run: sudo apt install -y protobuf-compiler
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check
- name: Lint
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --tests --benches -- -D warnings
- name: Test
uses: actions-rs/cargo@v1
with:
command: test