Skip to content

Commit

Permalink
Merge pull request #36 from ids1024/github-actions
Browse files Browse the repository at this point in the history
Add simple Github Actions workflow
  • Loading branch information
uranusjr authored Oct 9, 2020
2 parents a302af5 + 0ce5ee4 commit d88cccb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: [push, pull_request]

name: ci

jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cd src; python -c 'import shellingham; print(shellingham.detect_shell())'

macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- run: cd src; python -c 'import shellingham; print(shellingham.detect_shell())'

0 comments on commit d88cccb

Please sign in to comment.