diff options
author | Thomas Buckley-Houston | 2021-12-10 14:16:50 +0000 |
---|---|---|
committer | Thomas Buckley-Houston | 2021-12-10 14:53:52 +0000 |
commit | e79194233442e79e515c47c01573580fdf3690b7 (patch) | |
tree | e421e1433c9e55eacb514a5f66a48a4d6df0c81f /.github/workflows | |
parent | 8d581b2df5bac897e16ae2ad78cc146292312d42 (diff) |
Update tests
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/specs.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml new file mode 100644 index 0000000..ceb96bf --- /dev/null +++ b/.github/workflows/specs.yml @@ -0,0 +1,18 @@ +name: Run tests in headless Vim +on: [push] +jobs: + Specs: + runs-on: ubuntu-latest + steps: + - name: Install Vim GTK + run: | + sudo apt-get install vim-gtk -y + vim --version + - uses: actions/checkout@v2 + - uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + - name: Run specs + uses: GabrielBB/xvfb-action@v1 + with: + run: bundle exec rspec |