doc: release notes 1.3.0 (#14) #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Overflow Test | |
on: [push] | |
defaults: | |
run: | |
# default failure handling for shell scripts in 'run' steps | |
shell: 'bash -Eeuo pipefail -x {0}' | |
jobs: | |
overflow_test: | |
runs-on: ubuntu-latest | |
name: Overflow Test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate Test Summary | |
id: generate-summary | |
uses: ./ | |
with: | |
artifact_directory: example-artifacts/ | |
limit_summary: 10 | |
- name: If there is an overflow summary, archive it | |
if: ${{steps.generate-summary.outputs.Overflow}} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{steps.generate-summary.outputs.Overflow}} | |
path: ${{steps.generate-summary.outputs.Overflow}} | |
retention-days: 7 |