您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
848 B
30 行
848 B
name: Linter
|
|
|
|
# Run this workflow every time a new commit pushed to your repository
|
|
on: push
|
|
|
|
jobs:
|
|
# Set the job key. The key is displayed as the job name
|
|
# when a job name is not provided
|
|
super-lint:
|
|
# Name the Job
|
|
name: Lint code base
|
|
# Set the type of machine to run on
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
working-directory : ./UOP1_Project/
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: git pull
|
|
- run: dotnet tool install -g dotnet-format
|
|
- name: format
|
|
run: dotnet-format -f Assets/Scripts -v d
|
|
working-directory: ${{env.working-directory}}
|
|
- name: Commit changes
|
|
uses: EndBug/add-and-commit@v5
|
|
with:
|
|
message: "[Bot] Automated dotnet-format update"
|
|
add: "*.cs"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|