mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
add scripts
This commit is contained in:
parent
23b5d08d18
commit
f38b80ce02
2 changed files with 35 additions and 0 deletions
20
.github/workflows/build.yml
vendored
Normal file
20
.github/workflows/build.yml
vendored
Normal 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
15
.github/workflows/build.yml~
vendored
Normal 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
|
||||
|
Loading…
Reference in a new issue