Sha256: 1b0d7767937122f6e198f884b9eefda309d2d15fff3508113150ed76e8cc8baf
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
name: Verify on: push: branches: - '*' pull_request: branches: - '*' jobs: test: runs-on: ubuntu-18.04 timeout-minutes: 40 services: postgres: image: postgres:9.6 ports: ["5432:5432"] env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 strategy: fail-fast: true matrix: ruby: - 2.5 - 2.6 - 2.7 - 3.0 env: RAILS_ENV: test name: Ruby ${{ matrix.ruby }} steps: - name: Install system dependencies run: sudo apt-get install libpcap-dev graphviz - name: Checkout code uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Test run: | cp spec/dummy/config/database.yml.github_actions spec/dummy/config/database.yml bundle exec rake --version bundle exec rake db:create db:migrate # Disabling this check because it is proving unreliable # git diff --exit-code spec/dummy/db/structure.sql bundle exec rake spec bundle exec rake yard
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
metasploit_data_models-5.0.4 | .github/workflows/verify.yml |