Skip to content

Commit

Permalink
make it prettier
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Sjögren <[email protected]>
  • Loading branch information
konstruktoid committed Oct 1, 2024
1 parent 4283728 commit cd838bc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
- name: Check out src from Git
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
fetch-depth: 0 # needed by setuptools-scm

- name: Build dists
run: python -m tox -e pkg

- name: Publish to pypi.org
if: >- # "create" workflows run separately from "push" & "pull_request"
if: >- # "create" workflows run separately from "push" & "pull_request"
github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ concurrency:
cancel-in-progress: true

on:
push: # only publishes pushes to the main branch to TestPyPI
branches: # any integration branch but not tag
push: # only publishes pushes to the main branch to TestPyPI
branches: # any integration branch but not tag
- "main"
pull_request:

Expand All @@ -25,7 +25,7 @@ jobs:
with:
min_python: "3.9"
max_python: "3.12"
default_python: "3.9" # used by jobs in other_names
default_python: "3.9" # used by jobs in other_names
other_names: |
lint
pkg
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
fetch-depth: 0 # needed by setuptools-scm

- name: Install Python
uses: actions/setup-python@v5
Expand All @@ -60,7 +60,7 @@ jobs:
run: |
${{ matrix.PREFIX }} tox run -e ${{ matrix.passed_name }}
check: # This job does nothing and is only used for the branch protection
check: # This job does nothing and is only used for the branch protection
if: always()

needs:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ This repository contains the following molecule plugins:
- podman
- vagrant


Installing `molecule-plugins` does not install dependencies specific to each,
plugin. To install these you need to install the extras for each plugin, like
`pip3 install 'molecule-plugins[azure]'`.
Expand Down
8 changes: 4 additions & 4 deletions test/gce/scenarios/linux/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

- A GCE credentials rc file
- A GCE credentials rc file

## Install

Expand All @@ -11,9 +11,9 @@ installation best practices. If not using a virtual environment, please
consider passing the widely recommended ['--user' flag][] when invoking
`pip`.

``` bash
```bash
$ pip install 'molecule_gce'
```

[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
8 changes: 4 additions & 4 deletions test/gce/scenarios/windows/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

- A GCE credentials rc file
- A GCE credentials rc file

## Install

Expand All @@ -11,9 +11,9 @@ installation best practices. If not using a virtual environment, please
consider passing the widely recommended ['--user' flag][] when invoking
`pip`.

``` bash
```bash
$ pip install 'molecule_gce'
```

[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
[Virtual environment]: https://virtualenv.pypa.io/en/latest/
['--user' flag]: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site

0 comments on commit cd838bc

Please sign in to comment.