Skip to content

Commit

Permalink
Run io-cli-tests.md only on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Shon Feder committed Nov 22, 2022
1 parent 2047dba commit a0cb9cb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 39 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
push:
branches:
- main

name: build

jobs:
Expand All @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '17'
node-version: "17"
- run: cd ./tntc && npm install
- run: cd ./tntc && npm run compile
- run: cd ./tntc && npm test
Expand All @@ -39,19 +39,24 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '17'
node-version: "17"
- run: npm install -g txm
- run: cd ./tntc && npm install
- run: cd ./tntc && npm run compile && npm link
- run: cd ./tntc && txm cli-tests.md
- name: Blackbox integration tests
run: cd ./tntc && txm cli-tests.md
- name: Blackbox integration tests with I/O
# This tests fail on windows currently
# See https://github.com/anko/txm/issues/10
run: cd ./tntc && txm io-cli-tests.md
if: matrix.operating-system != 'windows-latest'

tntc-antlr-grammar:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '17'
node-version: "17"
- run: cd ./tntc && npm install
- run: cd ./tntc && npm run antlr

33 changes: 0 additions & 33 deletions tntc/runner.sh

This file was deleted.

0 comments on commit a0cb9cb

Please sign in to comment.