From d24a53785ef77b494075f4390bfba29a83ce8e59 Mon Sep 17 00:00:00 2001 From: Aaron Abbott Date: Thu, 19 Jan 2023 16:29:33 -0500 Subject: [PATCH] Create initial github workflow file (#227) --- .circleci/config.yml | 3 ++- .github/workflows/ci.yaml | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/ci.yaml diff --git a/.circleci/config.yml b/.circleci/config.yml index eab99290..5e0f81cd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..4585b2a6 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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"