Merge pull request #105 from ucpr/update-nvim-config #1527
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Configuration Tester | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 */12 * * *' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
version: [vx.x.x] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 3 | |
steps: | |
- name: Checkout repo | |
uses: actions/[email protected] | |
- name: Setup Deno | |
uses: denoland/[email protected] | |
with: | |
deno-version: ${{ matrix.version }} | |
- name: Run setup | |
run: make setup | |
- name: Run healthcheck | |
run: make OPTS=--ci healthcheck |