Skip to content

Save the frequency for the next run #3

Save the frequency for the next run

Save the frequency for the next run #3

Workflow file for this run

name: Build the game
on:
push
jobs:
test-run:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: idleberg/[email protected]
- name: Test environment variable
run: |
if [ -z "${PLAYDATE_SDK_PATH}" ]; then
echo "PLAYDATE_SDK_PATH is not defined or empty"
exit 1
fi
$PLAYDATE_SDK_PATH/bin/pdc --version
- name: Print version
run: pdc --version
- name: Compile game
run: pdc --verbose Source