-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (54 loc) · 1.61 KB
/
Copy pathci.yml
File metadata and controls
66 lines (54 loc) · 1.61 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: CI
on:
pull_request:
branches:
- main
push:
branches-ignore:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
if: "github.event_name == 'pull_request' || github.event.before != '0000000000000000000000000000000000000000'"
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup python symlink for gcloud installer
run: sudo ln -sf /usr/bin/python3 /usr/local/bin/python
- name: Setup mise
uses: jdx/mise-action@v4
- name: Install dependencies
run: mise run install
- name: Run tests
run: mise run test
- name: Run template tests
run: mise run test-template
- name: Check formatting
run: mise run format-check
- name: Run linting
run: mise run lint
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: src/
retention-days: 7
publish-rc:
needs: build-and-test
runs-on: ubuntu-latest
permissions:
contents: write
if: "github.event_name == 'push' && github.event.before != '0000000000000000000000000000000000000000'"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: jdx/mise-action@v4
- name: Install dependencies
run: mise run install
- name: Publish RC template packages
run: mise run publish-templates-rc
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}