Support Add / Remove Struct Tags #23
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: Smoke Tests | |
on: [pull_request] | |
jobs: | |
build: | |
name: ${{ matrix.os }} ${{ matrix.version }} | |
runs-on: ${{ matrix.os }} | |
# Not containing 'SKIP CI' in the commit message AND | |
# (Either non-Windows OR triggered on 'push' (if triggered by 'pull_request', github.base_ref is not empty) | |
if: "!contains(github.event.head_commit.message, 'SKIP CI')" | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
version: ['stable'] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.21' | |
check-latest: true | |
cache: true | |
- name: Install dependencies | |
run: npm ci | |
- name: Compile | |
run: npm run vscode:prepublish | |
- name: Install Go tools (Modules mode) | |
run: | | |
go version | |
go run ./tools/installtools/main.go | |
env: | |
GO111MODULE: on | |
EXT: "${{ matrix.os == 'windows-latest' && '.exe' || ''}}" | |
- name: Run unit tests | |
run: npm run unit-test | |
- name: Run tests (Linux) | |
run: xvfb-run -a npm run test | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
env: | |
CODE_VERSION: ${{ matrix.version }} | |
- name: Run tests (Windows/Mac) | |
run: npm run test | |
if: ${{ matrix.os != 'ubuntu-latest' }} | |
env: | |
CODE_VERSION: ${{ matrix.version }} | |
- name: Lint check | |
run: npm run lint | |
if: ${{ matrix.os == 'ubuntu-latest' && matrix.version == 'stable' }} |