Skip to content

Commit faf3ecc

Browse files
committed
Fix CI
1 parent 07066f7 commit faf3ecc

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1-
name: CI
2-
on:
3-
pull_request:
4-
push:
5-
branches:
6-
- master
1+
name: Test All
2+
on: [pull_request]
73
jobs:
84
test-all:
95
runs-on: ${{matrix.OS}}
106
strategy:
117
matrix:
12-
os: [ubuntu-18.04, windows-2019]
8+
OS: [ubuntu-18.04, windows-2019]
139
steps:
1410
- uses: actions/checkout@v2
1511
- uses: olafurpg/setup-scala@v13
1612
- name: Unit tests
1713
run: sbt cli/test
14+
shell: bash
1815
- name: Intergration tests
19-
run: sbt cliIntegration/scripted
16+
run: sbt cliIntegration/scripted
17+
shell: bash

.github/workflows/check-lint.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Copy/pasted from https://github.com/scala-native/scala-native
22
name: Check Lint
3-
on:
4-
pull_request:
5-
push:
6-
branches:
7-
- master
3+
on: [pull_request]
84
jobs:
95
check-lint:
106
runs-on: ubuntu-18.04

0 commit comments

Comments
 (0)