Skip to content

Commit

Permalink
ci: run on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Aug 4, 2024
1 parent dd567e5 commit 068dfcd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ on:
- main
jobs:
example:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup example
Expand All @@ -24,5 +27,6 @@ jobs:
working-directory: example
- name: Show hugo version
run: |
ls -l demo/public
type hugo
hugo version

0 comments on commit 068dfcd

Please sign in to comment.