diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..4263325 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,35 @@ +name: Test + +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + + name: Test (Ruby ${{ matrix.ruby-version }}) + + strategy: + fail-fast: false + + matrix: + ruby-version: + - 2.6 + + steps: + - uses: actions/checkout@v4 + + - uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: libxslt-dev libxml2-dev zlib1g-dev + version: 1.0 + + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby-version }} + bundler: 1.17 + + - run: bundle config build.nokogiri --use-system-libraries + - run: bundle install + # - run: bundle exec gem pristine nokogiri + - run: bundle exec rake diff --git a/README.md b/README.md index 1e848a3..59b69fc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -[![Build Status](https://travis-ci.org/firmafon/switest.svg)](https://travis-ci.org/firmafon/switest) +![Build Status](https://github.com/relatel/switest/actions/workflows/ci.yml/badge.svg) + # SWITEST @@ -114,7 +115,7 @@ must support inband DTMF for the DTMF features to work. ### Early stage This is prototype software, but still quite powerful. At the moment -it is running 50+ scenarios at Firmafon, testing everything from +it is running 50+ scenarios at Relatel, testing everything from IVR menus to attended transfers and voicemails. ## License @@ -122,7 +123,7 @@ IVR menus to attended transfers and voicemails. ``` The MIT License (MIT) -Copyright (c) 2015 Firmafon ApS, Harry Vangberg +Copyright (c) 2015 Relatel A/S Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/switest.gemspec b/switest.gemspec index 7a83290..086e253 100644 --- a/switest.gemspec +++ b/switest.gemspec @@ -3,10 +3,10 @@ Gem::Specification.new do |s| s.version = "0.1" s.date = "2015-04-23" s.summary = "Switest" - s.email = "hv@firmafon.dk" - s.homepage = "http://github.com/firmafon/switest" + s.email = "teknik@relatel.dk" + s.homepage = "http://github.com/relatel/switest" s.description = "Functional testing for voice applications" - s.authors = ["Harry Vangberg"] + s.authors = ["Harry Vangberg", "Relatel A/S"] s.files = Dir["lib/**/*"] + %w(README.md) s.test_files = Dir["test/**/*"]