Skip to content

Commit d24a537

Browse files
authored
Create initial github workflow file (#227)
1 parent 773ee41 commit d24a537

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ commands:
5050
description: Checkout code and install tox
5151
steps:
5252
- checkout
53-
- run: pip install tox-factor
53+
# Pin tox 3 because of https://github.com/rpkilby/tox-factor/issues/18
54+
- run: pip install -U tox==3.27.1 tox-factor
5455

5556
jobs:
5657
lint:

.github/workflows/ci.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on:
2+
push:
3+
branches: [main]
4+
pull_request:
5+
name: ci
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- run: echo "hello world"

0 commit comments

Comments
 (0)