add scripts

This commit is contained in:
Gregory John Casamento 2021-07-10 15:38:23 -04:00
parent 23b5d08d18
commit f38b80ce02
2 changed files with 35 additions and 0 deletions

20
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,20 @@
# This is the CI workflow for gnustep base
name: CI
# Controls when the workflow will run
on: push
jobs:
build:
runs-on: ubuntu-latest
# Checkout and build...
steps:
- name: Checkout repository
- uses: actions/checkout@v2
- name: Build
run: ./.github/scripts/build.sh
- name: Run tests
run: ./.github/scripts/test.sh

15
.github/workflows/build.yml~ vendored Normal file
View file

@ -0,0 +1,15 @@
# This is the CI workflow for gnustep base
name: CI
# Controls when the workflow will run
on: push
jobs:
build:
runs-on: ubuntu-latest
# Checkout and build...
steps:
- name: Checkout repository
- uses: actions/checkout@v2