Skip to content
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.

Commit

Permalink
remove macOS test running
Browse files Browse the repository at this point in the history
ref: #139

Signed-off-by: Avelino <[email protected]>
  • Loading branch information
avelino committed Feb 27, 2021
1 parent c825d85 commit 8446fe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
matrix:
go-version: ["1.16.x", "1.15.x"]
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
name: Go=${{ matrix.go-version }} / OS=${{ matrix.os }}
steps:
Expand Down
1 change: 1 addition & 0 deletions runtime/operators.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ func OpMul(values ...interface{}) interface{} {

// OpPow implements exponentiation '**' function.
// returns x**y, the base-x exponential of y
// TODO: https://github.com/rumlang/rum/issues/139
func OpPow(values ...float64) float64 {
y := float64(1)
if len(values) < 1 {
Expand Down

0 comments on commit 8446fe4

Please sign in to comment.