Skip to content

feat: Support multiple t functions in the same scope (#46) #81

feat: Support multiple t functions in the same scope (#46)

feat: Support multiple t functions in the same scope (#46) #81

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
paths:
- ".github/workflows/test.yaml"
- "Makefile"
- "lua/**"
- "tests/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: get year month
id: get_date
run: echo "year_month=$(date +'%Y%m')" >> $GITHUB_OUTPUT
- name: plugins cache
uses: actions/cache@v4
with:
path: .tests
# 月に一度のキャッシュクリア
key: ${{ runner.os }}-plugins-${{ hashFiles('tests/busted.lua') }}-${{ steps.get_date.outputs.year_month }}
- name: setup neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
- name: run tests
run: make test