-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into wip/radeusgd/9812-infer-method-calls
# Conflicts: # distribution/lib/Standard/Base/0.0.0-dev/src/Meta/Enso_Project.enso # engine/runtime-integration-tests/src/test/java/org/enso/compiler/test/TypeInferenceTest.java # engine/runtime/src/main/java/org/enso/interpreter/runtime/scope/ModuleScope.java # engine/runtime/src/main/scala/org/enso/interpreter/runtime/IrToTruffle.scala
- Loading branch information
Showing
2,406 changed files
with
76,006 additions
and
43,815 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.enso text eol=lf | ||
*.png binary | ||
CHANGELOG.md merge=union |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# This file is not auto-generated. Feel free to edit it. | ||
|
||
name: Engine Changed Files | ||
|
||
on: | ||
workflow_call: | ||
outputs: | ||
all_changed_files: | ||
description: "Returns all changed files" | ||
value: ${{ jobs.engine-changed-files.outputs.all_changed_files }} | ||
any_changed: | ||
description: "Returns `true` when any of the filenames have changed" | ||
value: ${{ jobs.engine-changed-files.outputs.any_changed }} | ||
|
||
jobs: | ||
engine-changed-files: | ||
runs-on: ubuntu-latest | ||
name: Changed Files | ||
outputs: | ||
all_changed_files: ${{ steps.engine-changed-files.outputs.all_changed_files }} | ||
any_changed: ${{ steps.engine-changed-files.outputs.any_changed }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 | ||
- name: Get changed files | ||
id: engine-changed-files | ||
uses: tj-actions/changed-files@v45 | ||
with: | ||
files: | | ||
distribution/** | ||
engine/** | ||
lib/** | ||
project/** | ||
std-bits/** | ||
test/** | ||
build.sbt | ||
.cargo/** | ||
Cargo.lock | ||
Cargo.toml | ||
rust-toolchain.toml | ||
.github/workflows/engine-changed-files.yml | ||
.github/workflows/engine-checks-optional.yml | ||
.github/workflows/engine-checks.yml | ||
.github/workflows/engine-pull-request.yml | ||
- name: List all changed files | ||
env: | ||
ALL_CHANGED_FILES: ${{ steps.engine-changed-files.outputs.all_changed_files }} | ||
run: | | ||
if [[ "${{ steps.engine-changed-files.outputs.any_changed }}" == "true" ]]; then | ||
echo "Files changed:" | ||
fi | ||
for file in ${ALL_CHANGED_FILES}; do | ||
echo "$file" | ||
done |
Oops, something went wrong.