Skip to content

Sync Wordy: add "What is 0?", "What is -123?" and addition with 0 #3497

Sync Wordy: add "What is 0?", "What is -123?" and addition with 0

Sync Wordy: add "What is 0?", "What is -123?" and addition with 0 #3497

Workflow file for this run

name: Exercise tests
on:
workflow_dispatch:
push:
branches:
- main
- master
pull_request:
jobs:
test:
name: Go ${{ matrix.go-version }} - ${{ matrix.os }}/${{ matrix.test-arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: [1.25.x]
os: [ubuntu-24.04, windows-2025, macOS-latest]
test-arch: [amd64]
race: ["-race"]
include:
- go-version: 1.25.x
test-arch: "386"
os: ubuntu-24.04
race: ""
- go-version: 1.25.x
test-arch: "386"
os: windows-2025
race: ""
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5
with:
go-version: ${{ matrix.go-version }}
- name: Test exercises
shell: bash
env:
GOARCH: ${{ matrix.test-arch }}
run: ./bin/run-tests