From 620cc1b3a054f124a9088522d314f1d11ee2c51f Mon Sep 17 00:00:00 2001 From: Gabe Grand Date: Thu, 25 Jul 2024 16:17:56 +0200 Subject: [PATCH] Create test-import.yml --- .github/workflows/test-import.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test-import.yml diff --git a/.github/workflows/test-import.yml b/.github/workflows/test-import.yml new file mode 100644 index 0000000..cdea806 --- /dev/null +++ b/.github/workflows/test-import.yml @@ -0,0 +1,24 @@ +name: Import test + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Display Python version + run: python -c "import sys; print(sys.version)"