Try running the tests this way and checking to see if this produces a… #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I have no idea what I'm doing | |
name: Test Reusable Workflow | |
on: | |
push: | |
branches: [ 'dev', 'autobuild' ] | |
paths-ignore: [ '*.md', '*.json', '*.png' ] | |
pull_request: | |
branches: [ 'dev', 'autobuild' ] | |
paths-ignore: [ '*.md', '*.json', '*.png' ] | |
jobs: | |
windows: | |
name: Windows | |
runs-on: windows-latest | |
steps: | |
- uses: snow-actions/[email protected] | |
with: | |
patterns: | | |
.github | |
tests | |
Rakefile | |
- name: Set Up MKXP-Z | |
uses: ./.github/actions/mkxp-z | |
with: | |
mkxpz-version: 2.4.2.win32.d2f4ecd | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Test Gem | |
run: | |
rake | |
linux: | |
name: Linux | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: snow-actions/[email protected] | |
with: | |
patterns: | | |
.github | |
tests | |
Rakefile | |
- name: Set Up MKXP-Z | |
uses: ./.github/actions/mkxp-z | |
with: | |
mkxpz-version: 2.4.2.linux.d2f4ecd | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Test Gem | |
run: | |
rake --trace |