Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys authored Jan 27, 2024
1 parent 1a15850 commit 259a87c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
name: 'test ${{ matrix.os }}'
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Dosei CLI
run: |
brew tap ...
brew install ./Formula/dctl.rb
- name: Test dctl
run: dctl --version

0 comments on commit 259a87c

Please sign in to comment.