.github/workflows/ruby.yml in graphql-metrics-5.0.8 vs .github/workflows/ruby.yml in graphql-metrics-6.0.0
- old
+ new
@@ -1,14 +1,18 @@
name: Tests
-on: [push, pull_request]
+on:
+ push:
+ pull_request:
+ schedule:
+ - cron: '0 8 * * 1'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
- ruby: ['2.7', '3.0', '3.1', '3.2']
- gemfile: ['graphql_1.13', 'graphql_2.0', 'graphql_head']
+ ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
+ gemfile: ['graphql_2.3', 'graphql_head']
runs-on: ${{ matrix.os }}
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v3