Skip to content

toml: fix for integer float representation #544

toml: fix for integer float representation

toml: fix for integer float representation #544

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: bootstrap
run: ./build.sh net-bootstrap
- name: load-all
run: './factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
- name: test
run: './factor -run=tools.test resource:core'
- name: help-lint
run: './factor -run=help.lint resource:core resource:basis resource:extra'
build-macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- name: build
run: arch -x86_64 ./build.sh net-bootstrap
- name: load-all
run: './factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
- name: test
run: './factor -run=tools.test resource:core'
- name: help-lint
run: './factor -run=help.lint resource:core resource:basis resource:extra'
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1
- name: build
shell: cmd
run: build.cmd net-bootstrap
- name: load-all
shell: cmd
run: 'factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
- name: test
shell: cmd
run: 'factor -run=tools.test resource:core'
- name: help-lint
run: './factor -run=help.lint resource:core resource:basis resource:extra'