Skip to content

Commit

Permalink
Switched to Github Actions for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bfoz committed Mar 21, 2024
1 parent c45ed1d commit 5867e3c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ruby.yml
@@ -0,0 +1,21 @@
name: Ruby

on: [push]

jobs:
test:
strategy:
fail-fast: false
matrix:
ruby-version: ['2.7']
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec rake
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.markdown
@@ -1,8 +1,6 @@
Sketching with Ruby
===================

[![Build Status](https://travis-ci.org/bfoz/sketch.png)](https://travis-ci.org/bfoz/sketch)

Classes and methods for programmatically creating, manipulating, and exporting
simple geometric drawings. This gem is primarily intended to support mechanical
design generation, but it can also handle the doodling that you used to do in
Expand Down Expand Up @@ -154,4 +152,4 @@ Sketch.new do # A simple panel with box joints on 2 edges
end
end
end
```
```

0 comments on commit 5867e3c

Please sign in to comment.