fix(python): Fixed nested return + yield call (#190) #98
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: Generates Neogen tag | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
gen_tag: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- nightly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Neovim | |
uses: rhysd/action-setup-vim@v1 | |
id: neovim | |
with: | |
neovim: true | |
version: ${{ matrix.version }} | |
- uses: actions/checkout@v1 # related: actions/checkout#290 | |
- name: Run tag_gen | |
run: make tag | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |