Add Maze Runner to CI #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test bugsnag-python using Maze Runner | |
on: [push, pull_request] | |
jobs: | |
maze-runner: | |
runs-on: 'ubuntu-latest' | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' | |
bundler-cache: true | |
- run: bundle exec maze-runner --no-source | |
env: | |
PYTHON_TEST_VERSION: ${{ matrix.python-version }} |