Skip to content

Commit

Permalink
Make CI jobs pass again (google#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc committed Oct 13, 2022
1 parent 7a9ef50 commit e4fce14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mynmr_tools_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: '^1.13.1'
- run: go get -u github.com/go-bindata/go-bindata/...
- run: go install github.com/go-bindata/go-bindata/...@latest
- run: cd clients/go && go generate && go test

# Swift Client on macOS
Expand All @@ -205,7 +205,7 @@ jobs:
- name: Configure XCode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '11.5'
xcode-version: '13.2.1'
- run: make client-swift-test

# Dart Client(Flutter)
Expand Down Expand Up @@ -257,4 +257,4 @@ jobs:
- name: Run tests
run: |
cd clients/c#
dotnet test
dotnet test
2 changes: 1 addition & 1 deletion clients/ruby/test/zawgyidetector_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_difficult_code_points

def test_compatibility
file_path = File.join(File.dirname(File.dirname(__FILE__)),'/lib/myanmar-tools/resources/compatibility.tsv')
CSV.read(file_path,{col_sep: "\t"}).each{ |line|
CSV.read(file_path, col_sep: "\t").each{ |line|
expected = line[0] == '-Infinity' ? -1.0/0.0 : line[0].to_f
assert_equal expected, @detector.get_zawgyi_probability(line[1])
}
Expand Down

0 comments on commit e4fce14

Please sign in to comment.