Skip to content

Commit

Permalink
Create initial github workflow file (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
aabmass authored Jan 19, 2023
1 parent 773ee41 commit d24a537
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ commands:
description: Checkout code and install tox
steps:
- checkout
- run: pip install tox-factor
# Pin tox 3 because of https://github.com/rpkilby/tox-factor/issues/18
- run: pip install -U tox==3.27.1 tox-factor

jobs:
lint:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
on:
push:
branches: [main]
pull_request:
name: ci
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "hello world"

0 comments on commit d24a537

Please sign in to comment.