Add election officials for 2025 H1 AC elections #184
Workflow file for this run
This file contains hidden or 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
| on: ["pull_request"] | |
| name: Static checks | |
| jobs: | |
| static-checks: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| GOPATH: ${{ github.workspace }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| path: ./src/github.com/${{ github.repository }} | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get -y install moreutils hunspell hunspell-en-gb hunspell-en-us pandoc | |
| - name: Running static checks | |
| run: | | |
| export PATH=${GOPATH}/bin:${PATH} | |
| ./src/github.com/${{ github.repository }}/.ci/static-checks.sh |