Skip to content

Commit

Permalink
+ github actions for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jtzero committed Jun 10, 2024
1 parent a9c3bb6 commit ba53c13
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Tests

on:
push:
branches:
- main
pull_request:

jobs:
run-unit-tests:
name: Run Tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get upgrade -y
- run: sudo apt-get install luarocks neovim
- run: luarocks init
- run: luarocks install --deps-only ./go-to-test-file.nvim-*.rockspec
- run: ls
- run: lua_modules/bin/vusted

0 comments on commit ba53c13

Please sign in to comment.