mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
26 lines
429 B
YAML
26 lines
429 B
YAML
name: Continuous Integration v2.x
|
|
|
|
#trigger when these occur
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
branches:
|
|
- dev
|
|
workflow_dispatch:
|
|
|
|
#testing the CI workflows while nothing is functional yet
|
|
jobs:
|
|
test-ubuntu-latest:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: make tests
|
|
run: make tests
|