Skip to content

Commit 16fade1

Browse files
authored
Update workflow.yml
1 parent 0ee855a commit 16fade1

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/workflow.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,25 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ master ]
66
pull_request:
7-
branches: [ main ]
8-
9-
workflow_dispatch:
7+
branches: [ master ]
108

119
jobs:
1210
build:
1311
runs-on: ubuntu-latest
1412

1513
steps:
14+
- uses: actions/checkout@v2
15+
- uses: microsoft/playwright-github-action@v1
16+
- name: Setup .NET Core
17+
uses: actions/setup-dotnet@v1
18+
with:
19+
dotnet-version: 5.0
20+
- name: Test
21+
run: bin/test.sh
22+
- name: Codacy Coverage Reporter
23+
uses: codacy/[email protected]
24+
with:
25+
project-token: ${{ secrets.CODACY_TOKEN }}
26+
coverage-reports: 'tests/**/coverage.cobertura.xml'

0 commit comments

Comments
 (0)