Skip to content

2025

2025 #56

Workflow file for this run

# Controls when the workflow will run
on:
push:
branches: [ main, pair_programming ]
pull_request:
branches: [ main ]
# 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: 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
- name: Get Shellspec
run: curl -fsSL https://git.io/shellspec | tee >(sha256sum) | sh -s -- --yes
- name: Shellspec jq
run: shellspec spec/jq_spec.sh --output junit
- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v2
with:
name: Unit Test Results
path: report/*.xml
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: report/*.xml