Skip to content

Commit

Permalink
Run tests on Ubuntu and macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ad-si committed Jun 3, 2024
1 parent 3bb88b8 commit b232cc4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -50,10 +53,12 @@ jobs:
run: make docs

- name: Upload artifact
if: runner.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
with:
path: docs

- name: Deploy to GitHub Pages
if: runner.os == 'ubuntu-latest'
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit b232cc4

Please sign in to comment.