Skip to content

Commit

Permalink
use github actions for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bensie committed May 24, 2023
1 parent b1b5d09 commit dbf66d9
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 27 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

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

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", jruby]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rake
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2011-2016 James Miller
Copyright (c) 2011-2023 James Miller

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# SSHKey

Generate private and public SSH keys (RSA and DSA supported) using pure Ruby.

[![Build Status](https://secure.travis-ci.org/bensie/sshkey.svg?branch=master)](http://travis-ci.org/bensie/sshkey)
Generate private and public SSH keys (RSA, DSA, and ECDSA supported) using pure Ruby.

## Requirements

Tested / supported on CRuby 2.0.0+ and JRuby.
Tested / supported on CRuby 2.5+ and JRuby.

## Installation

Expand Down Expand Up @@ -213,4 +211,4 @@ SSHKey.ssh_public_key_to_ssh2_public_key "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQ

## Copyright

Copyright (c) 2011-2019 James Miller
Copyright (c) 2011-2023 James Miller

0 comments on commit dbf66d9

Please sign in to comment.