-
Notifications
You must be signed in to change notification settings - Fork 6
37 lines (33 loc) · 917 Bytes
/
library.yml
File metadata and controls
37 lines (33 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: library
on:
workflow_call:
inputs:
build_version:
description: "Specifies the build version to apply to all binaries produced by this workflow"
type: string
required: true
workflow_dispatch:
jobs:
component-check:
name: Library workflow
runs-on: ubuntu-latest
permissions:
contents: read
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
uv-cache-dependency-glob: 'library/uv.lock'
- name: Lint library
working-directory: library
run: |
just lint || exit 0
- name: Run library tests
working-directory: library
run: |
just tests