Skip to content

Commit

Permalink
move workflow to top directory
Browse files Browse the repository at this point in the history
  • Loading branch information
KatieLG committed Dec 15, 2024
1 parent d9ea211 commit 03a02f0
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./AOC/python
steps:
- uses: actions/checkout@v4

Expand All @@ -20,22 +23,17 @@ jobs:

- name: Set up Python
uses: actions/setup-python@v4
working-directory: ./python
with:
python-version-file: 'pyproject.toml'
python-version-file: './AOC/python/pyproject.toml'

- name: Set up Python
working-directory: ./python
run: uv python install

- name: Install requirements
working-directory: ./python
run: uv sync

- name: Lint
working-directory: ./python
run: make lint

- name: Test
working-directory: ./python
run: make test

0 comments on commit 03a02f0

Please sign in to comment.