We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773ee41 commit d24a537Copy full SHA for d24a537
.circleci/config.yml
@@ -50,7 +50,8 @@ commands:
50
description: Checkout code and install tox
51
steps:
52
- checkout
53
- - run: pip install tox-factor
+ # Pin tox 3 because of https://github.com/rpkilby/tox-factor/issues/18
54
+ - run: pip install -U tox==3.27.1 tox-factor
55
56
jobs:
57
lint:
.github/workflows/ci.yaml
@@ -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