From 5a2a4fe8e2a63a260e5cacbf6252f91ab8931e03 Mon Sep 17 00:00:00 2001 From: Xithrius Date: Sat, 26 Aug 2023 17:41:15 -0700 Subject: [PATCH] Working directory lint-test workflow --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b913ff4..f190b97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,10 +14,20 @@ jobs: lint-test: runs-on: ubuntu-latest + strategy: + matrix: + directory: ['api', 'xythrion'] + steps: - name: Checkout repository uses: actions/checkout@v2 + - name: Set working directory + working-directory: ${{ matrix.directory }} + + - name: pwd and ls + run: pwd && ls -al + - name: Set up Python 3.11 uses: actions/setup-python@v2 with: