Skip to content

Commit

Permalink
add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nudded committed Oct 16, 2024
1 parent 2b7c999 commit 2f20ea7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Empty file added .github/workflows/ruby.yml
Empty file.
23 changes: 23 additions & 0 deletions .github/workflows/rust.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

0 comments on commit 2f20ea7

Please sign in to comment.