cgen: use C99 short fixed array init syntax #7910
Workflow file for this run
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: vlib modules CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build-module-docs: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build V | |
run: make | |
- name: Build module documentation | |
run: ./v doc -m -f html vlib/ | |
- name: Deploy docs to vercel | |
if: ${{ github.event_name == 'push' && github.event.repository.full_name == 'vlang/v' && github.event.ref == 'refs/heads/master' }} | |
run: npx vercel --confirm --prod --name vmodules --token ${{ secrets.VERCEL_TOKEN }} vlib/_docs/ || true |