Skip to content

Commit 7dc7ac2

Browse files
authored
Merge branch 'main' into jv-get-until-parser-26
2 parents d33a997 + b4bcc3b commit 7dc7ac2

File tree

667 files changed

+63212
-24604
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

667 files changed

+63212
-24604
lines changed

.formatter.exs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# SPDX-FileCopyrightText: 2021 The Elixir Team
3+
# SPDX-FileCopyrightText: 2012 Plataformatec
4+
15
[
26
inputs: [
37
"lib/*/{lib,scripts,unicode,test}/**/*.{ex,exs}",
@@ -13,7 +17,9 @@
1317
assert_same: 2,
1418

1519
# Errors tests
16-
assert_eval_raise: 3
17-
],
18-
normalize_bitstring_modifiers: false
20+
assert_eval_raise: 3,
21+
22+
# Float tests
23+
float_assert: 1
24+
]
1925
]

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# SPDX-FileCopyrightText: 2021 The Elixir Team
3+
# SPDX-FileCopyrightText: 2012 Plataformatec
4+
15
lib/elixir/test/elixir/fixtures/*.txt text eol=lf
26
*.ex diff=elixir
37
*.exs diff=elixir

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# SPDX-FileCopyrightText: 2021 The Elixir Team
3+
14
---
25
blank_issues_enabled: true
36

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# SPDX-FileCopyrightText: 2021 The Elixir Team
3+
14
---
25
name: Report an issue
36
description:

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# SPDX-FileCopyrightText: 2021 The Elixir Team
3+
14
version: 2
25
updates:
36
- package-ecosystem: "github-actions"

.github/workflows/builds.hex.pm.yml

Lines changed: 0 additions & 134 deletions
This file was deleted.

.github/workflows/ci-markdown.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,40 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# SPDX-FileCopyrightText: 2021 The Elixir Team
3+
14
name: CI for Markdown content
25

36
on:
47
push:
58
branches:
6-
- 'main'
9+
- "main"
710
paths:
8-
- 'lib/**/*.md'
11+
- "lib/**/*.md"
912
pull_request:
1013
paths:
11-
- 'lib/**/*.md'
14+
- "lib/**/*.md"
1215
workflow_dispatch:
1316

17+
permissions:
18+
contents: read
19+
1420
jobs:
1521
lint:
1622
name: Lint Markdown content
1723

1824
strategy:
1925
fail-fast: false
2026

21-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-latest
2228

2329
steps:
2430
- name: Check out the repository
25-
uses: actions/checkout@v4
31+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2632
with:
2733
fetch-depth: 10
2834

2935
- name: Run markdownlint
30-
uses: DavidAnson/markdownlint-cli2-action@v11.0.0
36+
uses: DavidAnson/markdownlint-cli2-action@992badcdf24e3b8eb7e87ff9287fe931bcb00c6e # v20.0.0
3137
with:
3238
globs: |
3339
lib/elixir/pages/**/*.md
40+
README.md

0 commit comments

Comments
 (0)