diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml new file mode 100644 index 0000000..68ad98f --- /dev/null +++ b/.github/workflows/tests.yaml @@ -0,0 +1,13 @@ +name: Run tests +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + bundler-cache: true + - run: bundle exec rspec + diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 332e2b1..0000000 --- a/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ -language: ruby - -cache: bundler - -bundler_args: "--binstubs --path ../bundle --retry=3 --jobs=3" - -before_install: - - yes | gem update --system --force - - gem install bundler - -env: - - RAILS_VERSION='~> 5.2' - - RAILS_VERSION='~> 6.0' - -rvm: - - 2.6 - - 2.7