Skip to content

Commit

Permalink
Copy Wasmtime's filters for running CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Jun 18, 2021
1 parent 575131e commit 2ad3577
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/main.yml
@@ -1,5 +1,19 @@
name: CI
on: [push, pull_request]

on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
shell: bash

# Cancel any in-flight jobs for the same PR/branch so there's only one active
# at a time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
Expand Down

0 comments on commit 2ad3577

Please sign in to comment.