diff options
| author | Val Neekman (AvidCoder) <un33kvu@gmail.com> | 2022-02-16 15:34:54 -0500 |
|---|---|---|
| committer | Val Neekman (AvidCoder) <un33kvu@gmail.com> | 2022-02-16 15:34:54 -0500 |
| commit | 6404c1d5c66ac436ccc613eec338d4f548c00457 (patch) | |
| tree | 4c5815d4ff93aa07fdbac2dff0ec5656f5b06933 /.github/workflows/dev.yml | |
| parent | 45e0ae3d0db0fce0c7e875491848a646f3011386 (diff) | |
| download | python-slugify-6404c1d5c66ac436ccc613eec338d4f548c00457.tar.gz | |
simplify action
Diffstat (limited to '.github/workflows/dev.yml')
| -rw-r--r-- | .github/workflows/dev.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index ebfbe0a..175facb 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -15,12 +15,13 @@ jobs: matrix: os: [macos-latest, windows-latest, ubuntu-latest] python: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3] + steps: - - name: setup-python ${{ matrix.python }} + - uses: actions/checkout@v2 + - name: setup python uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - - name: Install dependencies run: | python -m pip install --upgrade pip |
