-
-
Notifications
You must be signed in to change notification settings - Fork 33
33 lines (27 loc) · 977 Bytes
/
release.yaml
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
---
name: Build & release
"on":
# Target are chosen so that all commits get a chance to have their build tested.
push:
branches:
- main
pull_request:
jobs:
release:
uses: kdeldycke/workflows/.github/workflows/[email protected]
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
with:
binaries-test-plan: |
# Runs the same binary tests as in the brew official Formula:
# https://github.com/Homebrew/homebrew-core/blob/f0a4d69/Formula/meta-package-manager.rb#L401-L413
# Test combination of version and verbosity.
--verbosity DEBUG --version
# Test help output.
--help
# Test CSV export.
--output-format csv --all-managers managers
# XXX Ideally we would like to use --no-color to simplify Homebrew's formula checks.
# See: https://github.com/kdeldycke/meta-package-manager/issues/1004
--no-color --output-format csv installed
timeout: 300