Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
35070d7
bumping .latest branch variable in update_dependencies.sh to 1.5.latest
FishtownBuildBot Apr 13, 2023
8c8303d
[create-pull-request] automated change (#714)
github-actions[bot] Apr 17, 2023
c942e68
created 1.5.0rc1 changelog (#713)
mikealfare Apr 17, 2023
24c7792
ADAP-473: Table materialization not properly dropping existing relati…
github-actions[bot] Apr 21, 2023
45cc917
update docs for 1.5.0rc1 release (#728)
mikealfare Apr 22, 2023
7c70c36
[create-pull-request] automated change (#746)
github-actions[bot] Apr 27, 2023
8676b70
backport cce8975906ff5693d4c761ac32dc761f3f097a36 (#776)
emmyoop May 17, 2023
2ad6d2a
Finish Constraint Support for Spark (#747) (#795)
github-actions[bot] Jun 6, 2023
03d5d15
[Backport 1.5.latest] [Fix] Wrap constraint type 'check' expression i…
github-actions[bot] Jun 9, 2023
9d14652
backport 798 to 1.5.latest (#806)
MichelleArk Jun 14, 2023
2ec5ad6
[create-pull-request] automated change (#844)
github-actions[bot] Aug 1, 2023
7abad07
[create-pull-request] automated change (#854)
github-actions[bot] Aug 7, 2023
b4c76c6
Allow for scala models to be created
pekapa Sep 24, 2023
04713cf
Merge branch 'main' into submit-scala-jobs-beta
pekapa Sep 24, 2023
d2a858e
Delete .changes/1.5.0.md
pekapa Sep 24, 2023
f056b64
Delete .changes/1.5.1.md
pekapa Sep 24, 2023
c3d81c3
Delete .changes/1.5.2.md
pekapa Sep 24, 2023
7ca66cc
Update CHANGELOG.md
pekapa Sep 24, 2023
ac050f8
Update CHANGELOG.md
pekapa Sep 24, 2023
a895f66
Update CHANGELOG.md
pekapa Sep 24, 2023
82314ba
Update CHANGELOG.md
pekapa Sep 24, 2023
0e32655
Update dev-requirements.txt
pekapa Sep 24, 2023
84e8b15
Update test_constraints.py
pekapa Sep 24, 2023
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
Prev Previous commit
Next Next commit
backport cce8975 (#776)
  • Loading branch information
emmyoop authored May 17, 2023
commit 8676b70f749448fa2b6b22915cab819efe7ce3ff
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
persist-credentials: false

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
Expand All @@ -108,9 +108,9 @@ jobs:
- name: Get current date
if: always()
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H_%M_%S')" #no colons allowed for artifacts
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: always()
with:
name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand All @@ -126,7 +126,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python
uses: actions/[email protected]
Expand Down Expand Up @@ -157,9 +157,9 @@ jobs:
run: |
export is_alpha=0
if [[ "$(ls -lh dist/)" == *"a1"* ]]; then export is_alpha=1; fi
echo "::set-output name=is_alpha::$is_alpha"
echo "is_alpha=$is_alpha" >> $GITHUB_OUTPUT

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
python -m pip install --user --upgrade pip
python -m pip install --upgrade wheel
python -m pip --version
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: dist
path: dist/
Expand Down