-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 775 Bytes
/
develop.yml
File metadata and controls
38 lines (32 loc) · 775 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
38
name: Develop
on:
push:
branches:
- dev
- develop
paths:
- "**/*.py"
- ".github/workflows/develop.yml"
pull_request:
branches:
- dev
- develop
paths:
- "**/*.py"
- ".github/workflows/develop.yml"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
- name: Install dependencies
uses: excitedleigh/setup-nox@v2.0.0
- run: nox