mirror of
https://github.com/WaterdogPE/WaterdogPE
synced 2024-11-14 10:27:03 +00:00
17 lines
358 B
YAML
17 lines
358 B
YAML
name: Pull Request Check
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build and verify
|
|
uses: ./.github/actions/build
|
|
with:
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
perform_deploy: false
|
|
create_prerelease: false |