Skip to content

Commit

Permalink
Create test-import.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gabegrand authored Jul 25, 2024
1 parent 28cbd7c commit 620cc1b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-import.yml
Original file line number Diff line number Diff line change
@@ -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)"

0 comments on commit 620cc1b

Please sign in to comment.