From be225953b340f9bc08c53d5f2b960c12c7dda069 Mon Sep 17 00:00:00 2001 From: matt <24556021+malisimo@users.noreply.github.com> Date: Wed, 18 Nov 2020 00:36:29 +0000 Subject: [PATCH] Create main.yml Generates source, builds and runs tests. --- .github/workflows/main.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..daef97b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,35 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the main branch +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs the source generation from JSON docs + - name: Generate the source code + run: gensrc + + # Builds the source code, including generated stuff from prior step + - name: Build the source code + run: buildsrc + + # Runs the tests + - name: Run the tests + run: runtests