Skip to content

linting and coverage #17

linting and coverage

linting and coverage #17

Workflow file for this run

name: Wails build
on:
pull_request:
branches: [ "master" ]
push:
tags:
- '*'
env:
# Necessary for most environments as build failure can occur due to OOM issues
NODE_OPTIONS: "--max-old-space-size=4096"
GO_VERSION: '1.23.1'
NODE_VERSION: '22.3.x'
permissions:
contents: write
jobs:
build:
strategy:
# Failure in one platform build won't impact the others
fail-fast: false
matrix:
build:
- name: 'CoinTrackingExportConverter'
platform: 'linux/amd64'
os: 'ubuntu-latest'
- name: 'CoinTrackingExportConverter'
platform: 'windows/amd64'
os: 'windows-latest'
- name: 'CoinTrackingExportConverter'
platform: 'darwin/universal'
os: 'macos-latest'
runs-on: ${{ matrix.build.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build wails
uses: dAppServer/[email protected]
id: build
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
package: true
wails-version: 'latest'
go-version: ${{ env.GO_VERSION }}
node-version: ${{ env.NODE_VERSION }}