Skip to content

Commit

Permalink
chore: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmithgh committed Dec 11, 2023
1 parent 8d5b4bb commit e114d29
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ on:
- 'main'
workflow_dispatch:
inputs:
build_id:
required: true
type: string
deploy_target:
required: true
type: string
perform_deploy:
required: true
enable_debug_vnc:
required: false
type: boolean
default: true
default: false
enable_debug_tmate:
required: false
type: boolean
default: false
schedule:
# daily 9AM EST
- cron: "0 14 * * *"
Expand All @@ -29,11 +27,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Testing1234
if: ${{ inputs.perform_deploy }}
run: |
echo build_id ${{ inputs.build_id }} deploy_target ${{ inputs.deploy_target }}
- name: Setup Neovim nightly
uses: rhysd/action-setup-vim@v1
with:
Expand All @@ -52,9 +45,14 @@ jobs:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- name: Start Xvfb
if: ${{ ! inputs.enable_debug_vnc }}
run: |
Xvfb :1 -screen 0 1024x768x16 &
- name: Setup tmate session
if: ${{ inputs.enable_debug_tmate || inputs.enable_debug_vnc }}
uses: mxschmitt/action-tmate@v3

- name: Test kitty-scrollback.nvim
run: |
# TODO: improve the env var exports, github actions are making it hard so I gave up for now
Expand Down

0 comments on commit e114d29

Please sign in to comment.