Skip to content

Commit

Permalink
Implement windows installation
Browse files Browse the repository at this point in the history
  • Loading branch information
hidakatsuya committed Apr 14, 2021
1 parent 28e7bc3 commit b0917ed
Show file tree
Hide file tree
Showing 4 changed files with 3,552 additions and 73 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@ on:

jobs:
test:
name: ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}

if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

strategy:
matrix:
platform:
- ubuntu-latest
os: [ubuntu-latest, windows-latest]
include:
- os: ubuntu-latest
command: diff-pdf
- os: windows-latest
command: diff-pdf.exe

steps:
- uses: actions/checkout@v2
Expand All @@ -28,6 +32,5 @@ jobs:
with:
diff-pdf-version: 0.5


- name: Echo diff-pdf
run: diff-pdf --help
run: ${{ matrix.command }} --help
Loading

0 comments on commit b0917ed

Please sign in to comment.