Skip to content

添加武汉理工大学本科生样式(#310) #307

添加武汉理工大学本科生样式(#310)

添加武汉理工大学本科生样式(#310) #307

Workflow file for this run

name: Automated testing
on: [push, pull_request]
jobs:
Run-tests:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v3
with:
submodules: true
# Set up Python
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install lxml
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Run regression tests
run: python3 tests/test_style.py
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update test files
add_options: '-A'