Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
nudded committed Oct 16, 2024
1 parent 2f20ea7 commit 3ee4bfc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Ruby

on:
push:
branches: ['main']
pull_request:
branches: ['main']

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./expression-ruby
steps:
- uses: actions/checkout@v4
- name: Build
run: rake compile
- name: Run tests
run: rake spec
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ruby
name: Rust

on:
push:
Expand All @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./expression-ruby
working-directory: ./expression-core
steps:
- uses: actions/checkout@v4
- name: Build
run: rake compile
run: cargo build --verbose
- name: Run tests
run: rake spec
run: cargo test --verbose

0 comments on commit 3ee4bfc

Please sign in to comment.