Skip to content

Commit

Permalink
ci: run act3 with all modes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhth committed Aug 18, 2024
1 parent 68f9ab8 commit 04c02bb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,14 @@ jobs:
with:
app-id: ${{ vars.GH_TOKEN_APP_ID }}
private-key: ${{ secrets.GH_TOKEN_APP_PRIVATE_KEY }}
- name: Run act3
- name: Run act3 with default output format
run: |
./act3
- name: Run act3 with tabular output format
run: |
./act3 -f table
- name: Run act3 with HTML output format
run: |
./act3 -f html
env:
GH_TOKEN: ${{ steps.generate-token.outputs.token }}

0 comments on commit 04c02bb

Please sign in to comment.