Skip to content

Commit

Permalink
include contract
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Gartland committed Nov 15, 2023
1 parent d45ed03 commit 22e08cc
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/contract.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Cypress-nightly
on:
workflow_call:
jobs:
native:
env:
DOCKER: false
FUZZBUCKET_SSH_KEY: ${{ secrets.FUZZBUCKET_SSH_KEY }}
FUZZBUCKET_URL: ${{ secrets.FUZZBUCKET_URL }}
FUZZBUCKET_CREDENTIALS: ${{ secrets.FUZZBUCKET_CREDENTIALS }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: python
uses: actions/setup-python@v4
with:
python-version: 3.11
- uses: extractions/setup-just@v1
- uses: actions/download-artifact@v3
with:
name: executables
path: bin
- run: chmod -R +x ./bin
- run: echo "${FUZZBUCKET_SSH_KEY}" > test/cy/fuzzbucket-ssh-key && chmod 600 test/cy/fuzzbucket-ssh-key
- run: just cy install
- run: just cy test
- run: just cy test-deploy

- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true

0 comments on commit 22e08cc

Please sign in to comment.