Skip to content

Commit

Permalink
Merge pull request #65 from anoma/joe/fast_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joe authored Sep 21, 2023
2 parents f4f1ce1 + 2a3b30d commit f7bfab1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
name: CI checks

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize, ready_for_review]

jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
# This condition ensures that this job will not run on pull requests in draft state
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
Expand Down

0 comments on commit f7bfab1

Please sign in to comment.