Skip to content

自己刚学git时的一些笔记, 希望对后来的初学者有帮助, 感谢审核! #106

自己刚学git时的一些笔记, 希望对后来的初学者有帮助, 感谢审核!

自己刚学git时的一些笔记, 希望对后来的初学者有帮助, 感谢审核! #106

Workflow file for this run

name: build
on:
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Build docs
run: |
mkdocs -v build