Fix data pipeline first-run errors

This commit is contained in:
ericiwamoto 2024-11-25 08:17:15 -08:00 committed by Carlos Felix
parent 999c1f6dee
commit 1f5df11954

View file

@ -25,14 +25,14 @@ jobs:
working-directory: data/data-pipeline working-directory: data/data-pipeline
strategy: strategy:
matrix: matrix:
python-version: [3.10] python-version: ['3.10']
steps: steps:
- name: Checkout source - name: Checkout source
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Print variables to help debug - name: Print variables to help debug
uses: hmarr/debug-action@v2 uses: hmarr/debug-action@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Load cached Poetry installation - name: Load cached Poetry installation