Skip to content

add a copy of the graphql schema and a command to generate it #2

add a copy of the graphql schema and a command to generate it

add a copy of the graphql schema and a command to generate it #2

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- name: Install Cloudflare Worker build tools
run: cargo install -q worker-build
- name: Build Worker
run: |
worker-build --release
- name: Run (Rust) unit tests
run: cargo test