Skip to content

Commit

Permalink
Spike an integration-test Job
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed Jul 29, 2024
1 parent 1850bb3 commit e64dee6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,25 @@ jobs:
files: "*-binaries/restyler-*.tar.gz"
fail_on_unmatched_files: true

integration-test:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/download-artifact@v4
with:
name: linux-binaries
- run: |
tar xzf restyler-*.tar.gz
mkdir -p ./bin
mv -v restyler-*/restyle ./bin
./bin/restyle --help
- uses: restyled-io/actions/setup-demo@v2
with:
options: --limit 3
- uses: restyled-io/actions/run@v2
with:
log-level: debug

release:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit e64dee6

Please sign in to comment.