Skip to content

main.yaml: use actions/setup-python@v6 to run Python 3.14 #20

main.yaml: use actions/setup-python@v6 to run Python 3.14

main.yaml: use actions/setup-python@v6 to run Python 3.14 #20

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Update index.html and push to repo
run: |
git config --local user.email "$(git log --format='%ae' HEAD^!)"
git config --local user.name "$(git log --format='%an' HEAD^!)"
git remote add github "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git"
git pull github ${GITHUB_REF} --ff-only
python3 ./encodings.py --table html >index.html
git commit -m "Committed from Github Actions" index.html
git push github HEAD:${GITHUB_REF}