Skip to content

Commit b0bade8

Browse files
Update from copier (2026-06-28T08:23:23)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 69a331e commit b0bade8

2 files changed

Lines changed: 57 additions & 1 deletion

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 99606c7
2+
_commit: 392c67f
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.github/workflows/build.yaml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
cibuildwheel:
3232
- "cp311"
3333
steps:
34+
<<<<<<< before updating
3435
- uses: actions/checkout@v6
3536
with:
3637
submodules: 'true'
@@ -102,3 +103,58 @@ jobs:
102103

103104
- name: Test Wheel
104105
run: python -m pytest -vvv verible/tests
106+
=======
107+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
108+
109+
- uses: actions-ext/python/setup@main
110+
with:
111+
version: ${{ matrix.python-version }}
112+
113+
- name: Install dependencies
114+
run: make develop
115+
116+
- name: Lint
117+
run: make lint
118+
119+
- name: Checks
120+
run: make checks
121+
122+
- name: Build
123+
run: make build
124+
125+
- name: Test
126+
run: make coverage
127+
128+
- name: Upload test results (Python)
129+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
130+
with:
131+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
132+
path: junit.xml
133+
if: ${{ always() }}
134+
135+
- name: Publish Unit Test Results
136+
uses: EnricoMi/publish-unit-test-result-action@d0a4676d0e0b938bc201470d88276b7c74c712b3 # v2.24.0
137+
with:
138+
files: '**/junit.xml'
139+
140+
- name: Upload coverage
141+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
142+
with:
143+
token: ${{ secrets.CODECOV_TOKEN }}
144+
145+
- name: Make dist
146+
run: make dist
147+
148+
- uses: actions-ext/python/test-wheel@main
149+
with:
150+
module: verible
151+
152+
- uses: actions-ext/python/test-sdist@main
153+
with:
154+
module: verible
155+
156+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
157+
with:
158+
name: dist-${{matrix.os}}
159+
path: dist
160+
>>>>>>> after updating

0 commit comments

Comments
 (0)