mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 15:05:28 +02:00
34 lines
712 B
YAML
34 lines
712 B
YAML
name: Run Go tests
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go-version: [ '1.22.x' ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: cachix/install-nix-action@v27
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Check Nix flake
|
|
run: nix flake check
|
|
|
|
- name: Build app
|
|
run: nix develop --command bash -c "cd server && go build"
|
|
|
|
- name: Build VS Code extension
|
|
run: nix build .#vs-code-extension
|
|
|
|
- name: Upload VS Code extension
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: vs-code-extension
|
|
path: result/config-lsp-*.vsix
|
|
|