Skip to content

Commit

Permalink
ci: add macos to examples test
Browse files Browse the repository at this point in the history
  • Loading branch information
NSEcho authored Feb 1, 2024
2 parents 1757296 + 42084db commit fdd246f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
name: examples
on: [push, pull_request]

on:
pull_request:
push:
branches:
- "main"

jobs:
linux:
examples:
strategy:
fail-fast: false
matrix:
arch: [x86_64]
os: [linux]
frida_version: ["16.0.13"]
runs-on: ubuntu-latest
include:
- runs_on: ubuntu-latest
arch: x86_64
os: linux
frida_version: "16.0.13"
- runs_on: macos-latest
arch: x86_64
os: macos
frida_version: "16.0.13"
runs-on: ${{ matrix.runs_on }}
env:
GODEBUG: cgocheck=2
steps:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: linting
on: [push, pull_request]

on:
pull_request:
push:
branches:
- "main"

jobs:
staticcheck:
strategy:
Expand Down

0 comments on commit fdd246f

Please sign in to comment.