This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
Bump the minor group across 1 directory with 5 updates #2322
This file contains 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: Schema | |
on: | |
push: | |
pull_request: | |
jobs: | |
generate_schema: | |
# Deduplicate jobs from pull requests and branch pushes within the same repo. | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository | |
strategy: | |
matrix: | |
service: | |
- soakdb_sync | |
- pin_packing | |
- targeting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4.1.7 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1.0.7 | |
with: | |
toolchain: stable | |
default: true | |
- name: Cache Rust Build | |
uses: Swatinem/rust-cache@v2.7.3 | |
- name: Generate Schema | |
uses: actions-rs/cargo@v1.0.3 | |
with: | |
command: run | |
args: > | |
--package ${{ matrix.service }} | |
--manifest-path backend/Cargo.toml | |
schema | |
--path ${{ matrix.service }}.graphql | |
- name: Upload Schema Artifact | |
uses: actions/upload-artifact@v4.3.4 | |
with: | |
name: ${{ matrix.service }}.graphql | |
path: ${{ matrix.service }}.graphql |