Skip to content

Commit

Permalink
Remove full ci run for pull requests to main
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkennedy513 committed Apr 14, 2023
1 parent 2282235 commit f0acca7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
- release/**
pull_request:
branches:
- main
- release/**

defaults:
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test

on:
push: {}
pull_request:
branches:
- main

jobs:

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
uses: ./.github/actions/run-tests
- name: Report coverage
run: bash <(curl -s https://codecov.io/bash)

0 comments on commit f0acca7

Please sign in to comment.