mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Fixed CI
This commit is contained in:
30
.github/workflows/comprehensive-tests.yml
vendored
30
.github/workflows/comprehensive-tests.yml
vendored
@@ -1,30 +0,0 @@
|
||||
#determine the branch name
|
||||
env:
|
||||
BRANCH_NAME: ${{github.head_ref||github.ref_name}}
|
||||
|
||||
#set the name of the tests
|
||||
name: Comprehensive Tests; branch ${{env.BRANCH_NAME}}
|
||||
|
||||
#trigger when these occur
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- ${{env.BRANCH_NAME}}
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- edited
|
||||
- reopened
|
||||
branches:
|
||||
- ${{env.BRANCH_NAME}}
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
#testing the workflows while nothing is functional yet
|
||||
jobs:
|
||||
test-placeholder:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: make test
|
||||
run: make tests
|
||||
25
.github/workflows/continuous integration-v2.yml
vendored
Normal file
25
.github/workflows/continuous integration-v2.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
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
|
||||
Reference in New Issue
Block a user