mirror of https://github.com/zeldaret/tp.git
25 lines
589 B
YAML
25 lines
589 B
YAML
name: OK Check
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/pheenoh/zeldaret-tp:latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
with:
|
|
token: ${{secrets.MY_REPO_PAT}}
|
|
- name: setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
architecture: 'x64'
|
|
- name: Copy in dol and compilers
|
|
run: cp /tmp/baserom.dol ./baserom.dol && cp -r /tmp/mwcc_compiler/ tools/mwcc_compiler && chown root /github/home/
|
|
- name: Run Make (OK)
|
|
run: make |