Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update project dependencies #31

Merged
merged 9 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
path: 'nephelaiio.nfs'

- name: Set up python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@ on:
pull_request:
branches:
- master
schedule:
- cron: "0 3 * * 0"

defaults:
run:
working-directory: 'nephelaiio.nfs'

jobs:
molecule:
name: Molecule
name: molecule
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -40,7 +38,7 @@ jobs:
path: 'nephelaiio.nfs'

- name: Set up python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand All @@ -53,6 +51,12 @@ jobs:
- name: Install dependencies
run: make poetry

- name: Debug Docker version
run: docker --version

- name: Debug Docker version
run: docker ps

- name: Debug test environment
run: make debug

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

defaults:
run:
working-directory: 'nephelaiio.docker'
working-directory: 'nephelaiio.nfs'

jobs:
release:
Expand All @@ -17,10 +17,10 @@ jobs:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'nephelaiio.docker'
path: 'nephelaiio.nfs'

- name: Set up Python 3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down
8 changes: 7 additions & 1 deletion .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ ignore:
.tox/

rules:
comments-indentation: false
comments:
min-spaces-from-content: 1
braces:
max-spaces-inside: 1
level: error
brackets:
max-spaces-inside: 1
level: error
line-length: disable
truthy: disable
line-length: disable
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: true
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test: lint

poetry:
@type poetry >/dev/null || pip3 install poetry
@poetry install
@poetry install --no-root

lint: poetry
poetry run yamllint .
Expand Down
Loading