Skip to content

Commit e36a208

Browse files
author
Ben Creech
committed
Dust off and update to V8 12.2
1 parent f7b9da0 commit e36a208

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+2707
-2923
lines changed

.dockerignore

Lines changed: 0 additions & 15 deletions
This file was deleted.

.flake8

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/issue_template.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
### Steps to reproduce
22

33
### Expected behavior
4+
45
Tell us what should happen
56

67
### Actual behavior
8+
79
Tell us what happens instead
810

911
### System configuration
12+
1013
**PyMiniRacer version**:
1114

1215
**Python version**:

.github/workflows/build.yml

Lines changed: 0 additions & 137 deletions
This file was deleted.

.github/workflows/docs.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: docs
2+
on:
3+
push:
4+
tags:
5+
- v*
6+
branches:
7+
- main
8+
permissions:
9+
contents: write
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Configure Git Credentials
16+
run: |
17+
git config user.name github-actions[bot]
18+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
19+
- uses: actions/setup-python@v5
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install hatch hatch-mkdocs
24+
- run: hatch -vv run docs:gh-deploy --force

0 commit comments

Comments
 (0)