Skip to content

Commit

Permalink
idk test
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Mar 5, 2024
1 parent 9d68840 commit dda9c3f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/actions/upload-report-shard/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ runs:
steps:
- name: Set report name
shell: bash
run: echo "REPORT_NAME=report-${{ github.job }-${{ matrix.shard }}.zip" >> $GITHUB_ENV
run: echo "REPORT_NAME=(echo $TEMP_REPORT_NAME)" >> $GITHUB_ENV
env:
TEMP_REPORT_NAME: report-${{ github.job }-${{ matrix.shard }}.zip
- name: Rename report
shell: bash
run: mv report.zip $REPORT_NAME
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/test-1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test 1

on: [push]

permissions:
issues: write
pull-requests: write

env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

jobs:
coverage:
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1]
steps:
- uses: actions/checkout@v3
- name: Download and install dependencies
uses: ./.github/actions/setup
- run: touch report.zip
- name: Upload report shard
uses: ./.github/actions/upload-report-shard
if: always()
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Test

on: [push]
on: []

permissions:
issues: write
Expand Down

0 comments on commit dda9c3f

Please sign in to comment.