Sha256: 995818651126a9331e9c84e38fc5d24a4a7df4f8d63d5c1e9ee65bea6321d38a

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

name: nightly_build

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

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:
    runs-on: ubuntu-latest
    container:
      image: docker://nrel/openstudio:3.6.1
    steps:
      - uses: actions/checkout@v3
      - name: Update gems
        run: |
          ruby --version
          bundle update
      - name: List OpenStudio measures
        run: bundle exec rake openstudio:list_measures
      - name: Update OpenStudio measures
        run: bundle exec rake openstudio:update_measures
      - name: Test OpenStudio measures
        run: bundle exec rake openstudio:test_with_openstudio
      - 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-geojson-gem.lcov"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
urbanopt-geojson-0.10.0 .github/workflows/nightly_build.yml