-
Notifications
You must be signed in to change notification settings - Fork 5
32 lines (30 loc) · 917 Bytes
/
dev_test.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
name: Universal2 wheel test
on:
jobs:
test:
name: Test Poeetry Universal2 wheel
runs-on: macos-14
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pipx
shell: bash
run: |
brew install pipx
echo "/Users/runner/.local/bin" >> $GITHUB_PATH
- name: Install Poetry & download charset_normalizer
shell: bash
run: |
pipx install poetry
poetry config virtualenvs.in-project true
printf '[tool.poetry]\npackage-mode = false\n\n[tool.poetry.dependencies]\npython = ">=3.11"\n' > pyproject.toml
cat pyproject.toml
poetry env use python
poetry add charset_normalizer
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
path: .venv/
retention-days: 1