Skip to content

Commit

Permalink
#13 Replace poetry with hatchling
Browse files Browse the repository at this point in the history
  • Loading branch information
danial-k committed Apr 30, 2024
1 parent 9276e67 commit 8e72752
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 1,003 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout project code
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Install and run shellcheck for all shell scripts
- name: Install shellcheck
run: sudo apt install shellcheck

- name: Check shell scripts
run: for f in $(find scripts -type f -name *.sh); do shellcheck $f; done;
- run: sudo apt install shellcheck
- run: for f in $(find scripts -type f -name *.sh); do shellcheck $f; done;

# Use python setup action to configure version
- uses: actions/setup-python@v2
- uses: actions/setup-python@v3
with:
python-version: '3.x'

# Install python poetry and dependencies for use in later steps
- name: Install poetry
run: ./scripts/poetry.sh

# Run validation script
- name: Validate
run: ./scripts/validate.sh
- run: ./scripts/validate.sh
Loading

0 comments on commit 8e72752

Please sign in to comment.