-
Notifications
You must be signed in to change notification settings - Fork 19
44 lines (44 loc) · 1.02 KB
/
tests.yml
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
name: tests
on:
push:
branches-ignore:
- 'private/**'
pull_request:
branches-ignore:
- 'private/**'
create:
branches-ignore:
- 'private/**'
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: 3.11
- name: Run make check
run: |
tools/ci-build.sh
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*.oxt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
windows:
runs-on: windows-2022
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: 3.11
- name: Run make pack
run: |
tools/ci-build.ps1
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*.msi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}