blob: 7078fbdc3c86e6aa5aca9821b512287a64528fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
name: Python codeqa/test
on:
push:
branches: [licensefix]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Create sdist
run: |
pip install "setuptools >= 40.9"
python setup.py sdist
tar tf dist/*.tar.gz
|