Final state for now of workflow yaml

This commit is contained in:
Timothy Sutton 2022-11-09 15:28:43 -05:00
parent 0c44cf53e1
commit 17fd785d81

View file

@ -13,19 +13,13 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 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: windows-2019
# 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@v3
- name: Checkout
uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: Build
run: bash .\ci\windows\ci-windows.sh
@ -35,5 +29,6 @@ jobs:
name: brigadier-windows-exe
path: D:\a\brigadier\brigadier\dist
- name: Test
run: bash .\ci\windows\test.sh
# Running the command as a test isn't really useful to us yet
# - name: Test
# run: bash .\ci\windows\test.sh