-
Notifications
You must be signed in to change notification settings - Fork 264
36 lines (33 loc) · 887 Bytes
/
Copy pathpip-mac.yml
File metadata and controls
36 lines (33 loc) · 887 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
name: pip-macOS
on:
push:
branches: ["master", "dev", "dev2", "github-action-macos"]
jobs:
pip-git-url:
name: pip install git+...
runs-on: macos-latest
steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: pip install git+...
id: create-release
run: python -m pip install git+https://github.com/ilius/pyglossary.git
pip-local:
name: pip install .
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Fetch tags
run: git fetch --prune --unshallow --tags
- name: List tags
run: git tag
- name: pip install .
id: create-release
run: python -m pip install .