Skip to content

Commit

Permalink
Improve pull request testing
Browse files Browse the repository at this point in the history
  • Loading branch information
stickz committed Dec 24, 2023
1 parent b22b45c commit 8405773
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- 'master'

jobs:
build:
prepare:
runs-on: ubuntu-latest
steps:
- name: Setup GitHub Runner
Expand All @@ -25,6 +25,15 @@ jobs:
- name: Run Chmod
run: chmod 777 .github/scripts/build.sh

build:
runs-on: ubuntu-latest
needs:
- prepare
steps:
- name: Build Stable
run: ./.github/scripts/build.sh -v --sourcemod=1.11.0-6911 --out=build
shell: bash

- name: Build Develop
run: ./.github/scripts/build.sh -v --sourcemod=1.12.0-7100 --out=build
shell: bash

0 comments on commit 8405773

Please sign in to comment.