Sha256: af54d6c8a320aebe370370a8c2d8dc83c935bef8c69dfe012e2d3d0925be3699
Contents?: true
Size: 1.72 KB
Versions: 1
Compression:
Stored size: 1.72 KB
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby name: CI on: push: branches: - main pull_request: branches: - main permissions: contents: read jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] steps: - uses: actions/checkout@v4 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, # change this to (see https://github.com/ruby/setup-ruby#versioning): uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Install dovecotpw run: sudo apt-get install -y dovecot-core - name: Copy configure file run: cp ./test/misc/postfix_admin.conf ~/.postfix_admin.conf - name: Copy my.cnf (for `rake setup_test_db`) run: cp ./test/misc/ci.my.cnf ~/.my.cnf - name: docker-compose up run: docker-compose up -d db - name: Sleep (work around) # wait-for-it.sh doesn't work with docker compose port mapping run: sleep 10 - name: Set up test database run: bundle exec rake setup_test_db - name: Run tests run: bundle exec rake test - name: Run specs run: bundle exec rake spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
postfix_admin-0.3.0 | .github/workflows/ci.yml |