Release v3.0.0 #4971
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
| name: Run checks | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| GOLANGCI_LINT_VERSION: v2.11.4 | |
| jobs: | |
| luacheck: | |
| runs-on: ubuntu-24.04 | |
| if: | | |
| github.event_name == 'push' || | |
| github.event_name == 'pull_request' && | |
| github.event.pull_request.head.repo.full_name != github.repository | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Tarantool | |
| uses: tarantool/setup-tarantool@v4 | |
| with: | |
| tarantool-version: '3.4' | |
| - name: Setup tt | |
| run: | | |
| curl -L https://tarantool.io/release/3/installer.sh | sudo bash | |
| sudo apt install -y tt | |
| tt version | |
| - name: Setup luacheck | |
| run: tt rocks install luacheck 0.25.0 | |
| - name: Run luacheck | |
| run: ./.rocks/bin/luacheck . | |
| golangci-lint: | |
| runs-on: ubuntu-24.04 | |
| if: | | |
| github.event_name == 'push' || | |
| github.event_name == 'pull_request' && | |
| github.event.pull_request.head.repo.full_name != github.repository | |
| steps: | |
| - uses: actions/setup-go@v6 | |
| - uses: actions/checkout@v6 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: ${{ env.GOLANGCI_LINT_VERSION }} | |
| args: --config=.golangci.yml | |
| codespell: | |
| runs-on: ubuntu-24.04 | |
| if: | | |
| github.event_name == 'push' || | |
| github.event_name == 'pull_request' && | |
| github.event.pull_request.head.repo.full_name != github.repository | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install codespell | |
| run: pip3 install codespell | |
| - name: Run codespell | |
| run: make codespell |