mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-23 21:20:42 +08:00
19 lines
512 B
YAML
19 lines
512 B
YAML
name: LCTT Article Checker
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
PULL_REQUEST_ID: ${{ github.event.number }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: "checkout master branch & return to pull request branch"
|
|
run: CURRENT=$(echo ${{github.ref}} | sed "s|refs/|refs/remotes/|") && git checkout master && git checkout $CURRENT
|
|
- name: run check
|
|
run: sh ./scripts/check.sh;
|