Sha256: 8ffcde84b330c10af851267d1d870562668cb644bfed483c15f8eee135451d52

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

name: REopt-gem CI

on:
  # push:
  schedule:
    # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
    # 5:23 am UTC (11:23pm MDT the day before) every weekday night in MDT
    - cron: '23 5 * * 2-6'
  pull_request:
    types: [review_requested]

env:
  # This env var should enforce develop branch of all dependencies
  FAVOR_LOCAL_GEMS: true
  GEM_DEVELOPER_KEY: ${{ secrets.GEM_DEVELOPER_KEY }}

jobs:
  weeknight-tests:
    # ubuntu-latest works since https://github.com/rbenv/ruby-build/releases/tag/v20220710 (July 10, 2022)
    # https://github.com/rbenv/ruby-build/discussions/1940
    runs-on: ubuntu-latest
    container:
      image: docker://nrel/openstudio:3.7.0
    steps:
      - uses: actions/checkout@v4
      - name: set git config options
        shell: bash
        run: |
          git config --global --add safe.directory '*'
      - name: Update gems
        run: |
          bundle update
          bundle exec certified-update
      - name: Run Rspec
        run: bundle exec rspec
      - name: Coveralls
        # coveralls action docs: https://github.com/marketplace/actions/coveralls-github-action
        uses: coverallsapp/github-action@v2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          path-to-lcov: "./coverage/lcov/urbanopt-reopt-gem.lcov"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
urbanopt-reopt-0.11.0 .github/workflows/nightly_ci_build.yml