Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/setup-go from 3 to 4 #207

Merged
merged 1 commit into from
Jun 8, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2023

Bumps actions/setup-go from 3 to 4.

Release notes

Sourced from actions/setup-go's releases.

v4.0.0

In scope of release we enable cache by default. The action won’t throw an error if the cache can’t be restored or saved. The action will throw a warning message but it won’t stop a build process. The cache can be disabled by specifying cache: false.

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v4
    with:
      go-version: ‘1.19’
  - run: go run hello.go

Besides, we introduce such changes as

Add support for stable and oldstable aliases

In scope of this release we introduce aliases for the go-version input. The stable alias instals the latest stable version of Go. The oldstable alias installs previous latest minor release (the stable is 1.19.x -> the oldstable is 1.18.x).

Stable

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v3
    with:
      go-version: 'stable'
  - run: go run hello.go

OldStable

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v3
    with:
      go-version: 'oldstable'
  - run: go run hello.go

Add support for go.work and pass the token input through on GHES

In scope of this release we added support for go.work file to pass it in go-version-file input.

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v3
</tr></table> 

... (truncated)

Commits
  • 4d34df0 Update configuration files (#348)
  • fdc0d67 Add Go bin if go-version input is empty (#351)
  • ebfdf6a add warning if go-version is empty (#350)
  • b27d769 fix lockfileVersion (#349)
  • c51a720 Enable caching by default with default input (#332)
  • 6b848af Merge pull request #343 from akv-platform/reusable-workflow
  • 12741cc Format update-config-files.yml
  • 7a77a6a Merge branch 'main' into reusable-workflow
  • 42a0cc8 Add update-config-files.yml
  • 7406d65 Add and configure ESLint and update configuration for Prettier (#341)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Mar 16, 2023
@joho joho merged commit e3b6eee into main Jun 8, 2023
@dependabot dependabot bot deleted the dependabot/github_actions/actions/setup-go-4 branch June 8, 2023 02:40
silverwind added a commit to silverwind/godotenv that referenced this pull request Oct 28, 2024
* rename module path (silverwind)
* REVERTME: rename forked module to avoid using replace directive in go.mod (Andrey Novikov)
* Merge branch 'fix/expand-existing-var' (Andrey Novikov)
* Re-add global env variable substitution (Andrey Novikov)
* Fix panic because of wrong function (joho#223) (Kha Nguyen)
* Update cmd.go (joho#221) (Vintage)
* Bump actions/setup-go from 3 to 4 (joho#207) (dependabot[bot])
* Add whitespace tests. (joho#210) (Chris Jones)
* Fix bug where internal unquoted whitespace truncates values (joho#205) (John Barton)
* Fix: ioutil.ReadAll() is deprecated, so removed it's dependency (joho#202) (Rakibul Yeasin)
* add overload flag (joho#200) (2tef)
* fix whitespace with gofmt (joho#203) (2tef)
* Update CI to test go 1.20 (joho#201) (John Barton)
* Multiline string support (joho#156) (John Barton)
* fix tiny details (joho#199) (2tef)
* Add punctuation to please godoc (joho#197) (John Barton)
* sort go import in readme (joho#193) (Doarakko)
* Remove power8 again as it wasn't fixed (John Barton)
* README updates around contributing (John Barton)
* Add darwin arm64 build (joho#174) (Elliot Murphy)
* Bump actions/setup-go from 2 to 3 (joho#185) (dependabot[bot])
* Bump actions/checkout from 2 to 3 (joho#184) (dependabot[bot])
* Create codeql-analysis.yml (joho#186) (John Barton)
* Remove renovate, add dependabot (joho#183) (John Barton)
* Update README for go install post go 1.17 (joho#170) (Bahtiyar Biksayev)
* Add a few new go versions (John Barton)
* remove power8 tests as they stopped working (John Barton)
* Fix typos in comments and extend README (joho#177) (Oleksandr Redko)
* Fix CI for power8 arch (joho#157) (John Barton)
* Add missing newline to created env files (joho#133) (Alexander Klein)
* Add renovate.json (joho#124) (renovate[bot])
* Fix release name (John Barton)
* Try a different github action (John Barton)
* Add action to publish binaries on each release (joho#125) (John Barton)
* Add a go.mod file (joho#123) (John Barton)
* Non amd tests (joho#122) (John Barton)
* Merge pull request joho#121 from joho/github-actions (John Barton)
* Add CI badge to readme (John Barton)
* Matrix test across mac/win/linux (John Barton)
* Add Barebones github actions test (John Barton)
* Merge pull request joho#115 from adombeck/master (John Barton)
* Merge pull request joho#109 from mniak/pr (John Barton)
* Merge pull request joho#120 from santosh653/master (John Barton)
* Update .travis.yml (santosh653)
* Update .travis.yml (santosh653)
* Fix typo (adombeck)
* add newline back (Andre Soares)
* Fix package name (Andre Soares)
* Remove go.mod (Andre Soares)
* Change package name back to joho/godotenv (Andre Soares)
* Rename and implement int-able without quotes (Andre Soares)
* Merge pull request joho#95 from orxobo/Write-adjustment (John Barton)
* Fixed Write bugs (orxobo)
* Merge pull request joho#90 from djherbis/master (John Barton)
* joho#89 move regexp.MustCompile to globals (Dustin H)
* Merge pull request joho#69 from hairyhenderson/ignore-leading-whitespace (John Barton)
* Merge branch 'master' into ignore-leading-whitespace (John Barton)
* Merge pull request joho#70 from hairyhenderson/support-keys-beginning-with-export-66 (John Barton)
* Support key names beginning with 'export' (Dave Henderson)
* Ignoring leading whitespace (Dave Henderson)
* Merge pull request joho#63 from mdanzinger/patch-1 (John Barton)
* An even tinier grammar fix (John Barton)
* Update cmd.go (Mendy Danzinger)
* Merge pull request joho#60 from coolaj86/precedence (John Barton)
* explicitly state env precedence and convention (AJ ONeal)
* Merge pull request joho#58 from lucastetreault/master (John Barton)
* feat(Expand Variables): Custom variable expansion instead of Go's os.Expand (Lucas Tétreault)
* Merge pull request joho#54 from egorse/master (John Barton)
* The value expand fallback to actual ENV values (egorse)
* Merge pull request joho#47 from sachaos/feature-expand-variables-on-value (John Barton)
* Update my homepage link (John Barton)
* Fix test, `$` should not be escaped (Takumasa Sakao)
* Expand variables on parseValue (Takumasa Sakao)
* Add test for substitutions (Takumasa Sakao)
* Pass envMap to parseLine & parseValue (Takumasa Sakao)
* Merge pull request joho#46 from joho/fix_quoting_parser_bug (John Barton)
* Try and replicate reported bug joho#45 (John Barton (joho))
* Merge pull request joho#44 from dvrkps/patch-1 (John Barton)
* travis: update go version (Davor Kapsa)
* Merge pull request joho#41 from alexquick/document-write-dotenv (John Barton)
* Merge pull request joho#42 from alexquick/feature-sorted-output (John Barton)
* sort output of Write/Marshal (Alex Quick)
* Be more careful with TestRoundtrip (Alex Quick)
* document Marshal, Unmarshal, and Write (Alex Quick)
* Merge pull request joho#35 from alexquick/feature-write-dotenv (John Barton)
* rename WriteString/ReadString to Marshal/Unmarshal (Alex Quick)
* escape some other bash-y special chars ($!) (Alex Quick)
* support for writing envs out in dotenv format (Alex Quick)
* Merge pull request joho#34 from alexquick/fix-parsing-issues (John Barton)
* Merge pull request joho#33 from crash7/go-report-card (John Barton)
* Merge pull request joho#36 from pda/parse-from-reader (John Barton)
* README.md mentions Parse(io.Reader) (Paul Annesley)
* Parse(io.Reader) => map[string]string (Paul Annesley)
* fix panic with `"` as the value (Alex Quick)
* support for equals in yaml-style lines (Alex Quick)
* rudimentry support for nested quotes (Alex Quick)
* handle escaping more comprehensively (Alex Quick)
* Add Go Report Card badge and fix spelling error (Christian Musa)
* README housekeeping (John Barton)
* Merge pull request joho#29 from joho/respect_empty_external_env_vars (John Barton)
* Change check of existing env to respect empty (but set) vars. (John Barton (joho))
* Add failing test for override of empty var (John Barton (joho))
* Merge pull request joho#27 from goenning/empty_var (John Barton)
* allow empty_var (Oenning)
* Merge pull request joho#25 from matiasanaya/master (John Barton)
* Fix quoted values check (Matias Anaya)
* Merge pull request joho#24 from joho/setup_travis (John Barton)
* Add a badge for the windows build too. (John Barton (joho))
* Apparently this file is meant to be hidden? (John Barton (joho))
* Switch build badge over to travis (John Barton (joho))
* Replace wercker.yml with travis.yml (John Barton (joho))
* Merge pull request joho#22 from mmilata/dont-swallow-errors (John Barton)
* Don't hide line parsing errors (Martin Milata)
* Propagate errors encountered when reading file (Martin Milata)
* Merge pull request joho#13 from jmervine/master (John Barton)
* adding Overload method (Josh Mervine)
* Merge pull request joho#11 from buddhamagnet/master (John Barton)
* remove unecessary assignment in autoloader (buddhamagnet)
* outdent else because golint said so. (John Barton (joho))
* Still trying to please golint with package comments. (John Barton (joho))
* Some golint feedback from http://goreportcard.com/report/joho/godotenv (John Barton (joho))
* run `gofmt -w -s ./..` (John Barton (joho))
* Merge pull request joho#8 from calavera/add_values_to_envmap (John Barton)
* Add values to the envMap when reading the file. (David Calavera)
* Update docs for the bin command. (John Barton (joho))
* Move cmd.go so it installs as "godotenv" (John Barton (joho))
* Merge pull request joho#6 from joho/add_bin_command (John Barton)
* Improve godoc on Read and Exec (John Barton (joho))
* Move the env loadings & command running into main package. (John Barton (joho))
* Get the minimum viable of the command working. (John Barton (joho))
* WIP on adding a bin command (John Barton (joho))
* Add CI badge for windows from Appveyor. (John Barton (joho))
* Remove commented out code and go fmt tests. (John Barton (joho))
* Merge pull request joho#4 from GoIncremental/4-windows-line-returns (John Barton)
* fixup (David Bochenski)
* Fix remaining failing test on windows (David Bochenski)
* Closes joho#4 Use bufio.Scanner to read newLines (David Bochenski)
* Merge pull request joho#3 from ys/feature/accept-equals-in-values (John Barton)
* Use SplitN instead of split (Yannick Schutz)
* Merge pull request joho#2 from mattn/seveal_equals (John Barton)
* FOO=BAR= should be "FOO" = "BAR=" (mattn)
* add godotenv.Read() which returns a map rather than calling os.Setenv (John Barton (joho))
* Merge pull request joho#1 from wolfeidau/readme_corrections (John Barton)
* Small correction to code in the README. (Mark Wolfe)
* Fix the autoload package. (John Barton (joho))
* Do more of the documenting. (John Barton (joho))
* Turns out there was an easier way to read the env file. (John Barton (joho))
* Add the ability to autoload the env file when you import. (John Barton (joho))
* Write up something for "go doc" (John Barton (joho))
* Update readme (John Barton (joho))
* Make sure we don't overwrite existing ENV vars. (John Barton (joho))
* That is a syntax lol. (John Barton (joho))
* Love me some build badges. (John Barton (joho))
* Borrow some of dotenv's readme (John Barton (joho))
* Licence and more readme (John Barton (joho))
* Readme with build status. (John Barton (joho))
* Add wercker.yml for CI (John Barton (joho))
* Make Load() without args open .env by default (John Barton (joho))
* Get the code running against all fixtures. (John Barton (joho))
* Clear the env at the start of each integration test. (John Barton (joho))
* Ignore comment lines and lines full o' whitespace. (John Barton (joho))
* Add some more tests. (John Barton (joho))
* Handle quoted hashes "properly" (John Barton (joho))
* Red, green, rinse repeat. (John Barton (joho))
* World's most naive comment parser... (John Barton (joho))
* Start trying to do comments/quoting properly. (John Barton (joho))
* Mark out the rest of my todo list in the test file. (John Barton (joho))
* export keyword parsing (John Barton (joho))
* Yaml style bro. (John Barton (joho))
* Move the red-green a little way down the existing parser specs. (John Barton (joho))
* Start porting over parser tests. (John Barton (joho))
* Extract a test helper (John Barton (joho))
* Get the basic tests green. (John Barton (joho))
* First failing tests extracted from dotenv (John Barton (joho))
* Macs are dumb. (John Barton (joho))
silverwind added a commit to silverwind/godotenv that referenced this pull request Oct 28, 2024
* also replace in readme (silverwind)
* 0.1.0 (silverwind)
* rename module path (silverwind)
* REVERTME: rename forked module to avoid using replace directive in go.mod (Andrey Novikov)
* Merge branch 'fix/expand-existing-var' (Andrey Novikov)
* Re-add global env variable substitution (Andrey Novikov)
* Fix panic because of wrong function (joho#223) (Kha Nguyen)
* Update cmd.go (joho#221) (Vintage)
* Bump actions/setup-go from 3 to 4 (joho#207) (dependabot[bot])
* Add whitespace tests. (joho#210) (Chris Jones)
* Fix bug where internal unquoted whitespace truncates values (joho#205) (John Barton)
* Fix: ioutil.ReadAll() is deprecated, so removed it's dependency (joho#202) (Rakibul Yeasin)
* add overload flag (joho#200) (2tef)
* fix whitespace with gofmt (joho#203) (2tef)
* Update CI to test go 1.20 (joho#201) (John Barton)
* Multiline string support (joho#156) (John Barton)
* fix tiny details (joho#199) (2tef)
* Add punctuation to please godoc (joho#197) (John Barton)
* sort go import in readme (joho#193) (Doarakko)
* Remove power8 again as it wasn't fixed (John Barton)
* README updates around contributing (John Barton)
* Add darwin arm64 build (joho#174) (Elliot Murphy)
* Bump actions/setup-go from 2 to 3 (joho#185) (dependabot[bot])
* Bump actions/checkout from 2 to 3 (joho#184) (dependabot[bot])
* Create codeql-analysis.yml (joho#186) (John Barton)
* Remove renovate, add dependabot (joho#183) (John Barton)
* Update README for go install post go 1.17 (joho#170) (Bahtiyar Biksayev)
* Add a few new go versions (John Barton)
* remove power8 tests as they stopped working (John Barton)
* Fix typos in comments and extend README (joho#177) (Oleksandr Redko)
* Fix CI for power8 arch (joho#157) (John Barton)
* Add missing newline to created env files (joho#133) (Alexander Klein)
* Add renovate.json (joho#124) (renovate[bot])
* Fix release name (John Barton)
* Try a different github action (John Barton)
* Add action to publish binaries on each release (joho#125) (John Barton)
* Add a go.mod file (joho#123) (John Barton)
* Non amd tests (joho#122) (John Barton)
* Merge pull request joho#121 from joho/github-actions (John Barton)
* Add CI badge to readme (John Barton)
* Matrix test across mac/win/linux (John Barton)
* Add Barebones github actions test (John Barton)
* Merge pull request joho#115 from adombeck/master (John Barton)
* Merge pull request joho#109 from mniak/pr (John Barton)
* Merge pull request joho#120 from santosh653/master (John Barton)
* Update .travis.yml (santosh653)
* Update .travis.yml (santosh653)
* Fix typo (adombeck)
* add newline back (Andre Soares)
* Fix package name (Andre Soares)
* Remove go.mod (Andre Soares)
* Change package name back to joho/godotenv (Andre Soares)
* Rename and implement int-able without quotes (Andre Soares)
* Merge pull request joho#95 from orxobo/Write-adjustment (John Barton)
* Fixed Write bugs (orxobo)
* Merge pull request joho#90 from djherbis/master (John Barton)
* joho#89 move regexp.MustCompile to globals (Dustin H)
* Merge pull request joho#69 from hairyhenderson/ignore-leading-whitespace (John Barton)
* Merge branch 'master' into ignore-leading-whitespace (John Barton)
* Merge pull request joho#70 from hairyhenderson/support-keys-beginning-with-export-66 (John Barton)
* Support key names beginning with 'export' (Dave Henderson)
* Ignoring leading whitespace (Dave Henderson)
* Merge pull request joho#63 from mdanzinger/patch-1 (John Barton)
* An even tinier grammar fix (John Barton)
* Update cmd.go (Mendy Danzinger)
* Merge pull request joho#60 from coolaj86/precedence (John Barton)
* explicitly state env precedence and convention (AJ ONeal)
* Merge pull request joho#58 from lucastetreault/master (John Barton)
* feat(Expand Variables): Custom variable expansion instead of Go's os.Expand (Lucas Tétreault)
* Merge pull request joho#54 from egorse/master (John Barton)
* The value expand fallback to actual ENV values (egorse)
* Merge pull request joho#47 from sachaos/feature-expand-variables-on-value (John Barton)
* Update my homepage link (John Barton)
* Fix test, `$` should not be escaped (Takumasa Sakao)
* Expand variables on parseValue (Takumasa Sakao)
* Add test for substitutions (Takumasa Sakao)
* Pass envMap to parseLine & parseValue (Takumasa Sakao)
* Merge pull request joho#46 from joho/fix_quoting_parser_bug (John Barton)
* Try and replicate reported bug joho#45 (John Barton (joho))
* Merge pull request joho#44 from dvrkps/patch-1 (John Barton)
* travis: update go version (Davor Kapsa)
* Merge pull request joho#41 from alexquick/document-write-dotenv (John Barton)
* Merge pull request joho#42 from alexquick/feature-sorted-output (John Barton)
* sort output of Write/Marshal (Alex Quick)
* Be more careful with TestRoundtrip (Alex Quick)
* document Marshal, Unmarshal, and Write (Alex Quick)
* Merge pull request joho#35 from alexquick/feature-write-dotenv (John Barton)
* rename WriteString/ReadString to Marshal/Unmarshal (Alex Quick)
* escape some other bash-y special chars ($!) (Alex Quick)
* support for writing envs out in dotenv format (Alex Quick)
* Merge pull request joho#34 from alexquick/fix-parsing-issues (John Barton)
* Merge pull request joho#33 from crash7/go-report-card (John Barton)
* Merge pull request joho#36 from pda/parse-from-reader (John Barton)
* README.md mentions Parse(io.Reader) (Paul Annesley)
* Parse(io.Reader) => map[string]string (Paul Annesley)
* fix panic with `"` as the value (Alex Quick)
* support for equals in yaml-style lines (Alex Quick)
* rudimentry support for nested quotes (Alex Quick)
* handle escaping more comprehensively (Alex Quick)
* Add Go Report Card badge and fix spelling error (Christian Musa)
* README housekeeping (John Barton)
* Merge pull request joho#29 from joho/respect_empty_external_env_vars (John Barton)
* Change check of existing env to respect empty (but set) vars. (John Barton (joho))
* Add failing test for override of empty var (John Barton (joho))
* Merge pull request joho#27 from goenning/empty_var (John Barton)
* allow empty_var (Oenning)
* Merge pull request joho#25 from matiasanaya/master (John Barton)
* Fix quoted values check (Matias Anaya)
* Merge pull request joho#24 from joho/setup_travis (John Barton)
* Add a badge for the windows build too. (John Barton (joho))
* Apparently this file is meant to be hidden? (John Barton (joho))
* Switch build badge over to travis (John Barton (joho))
* Replace wercker.yml with travis.yml (John Barton (joho))
* Merge pull request joho#22 from mmilata/dont-swallow-errors (John Barton)
* Don't hide line parsing errors (Martin Milata)
* Propagate errors encountered when reading file (Martin Milata)
* Merge pull request joho#13 from jmervine/master (John Barton)
* adding Overload method (Josh Mervine)
* Merge pull request joho#11 from buddhamagnet/master (John Barton)
* remove unecessary assignment in autoloader (buddhamagnet)
* outdent else because golint said so. (John Barton (joho))
* Still trying to please golint with package comments. (John Barton (joho))
* Some golint feedback from http://goreportcard.com/report/joho/godotenv (John Barton (joho))
* run `gofmt -w -s ./..` (John Barton (joho))
* Merge pull request joho#8 from calavera/add_values_to_envmap (John Barton)
* Add values to the envMap when reading the file. (David Calavera)
* Update docs for the bin command. (John Barton (joho))
* Move cmd.go so it installs as "godotenv" (John Barton (joho))
* Merge pull request joho#6 from joho/add_bin_command (John Barton)
* Improve godoc on Read and Exec (John Barton (joho))
* Move the env loadings & command running into main package. (John Barton (joho))
* Get the minimum viable of the command working. (John Barton (joho))
* WIP on adding a bin command (John Barton (joho))
* Add CI badge for windows from Appveyor. (John Barton (joho))
* Remove commented out code and go fmt tests. (John Barton (joho))
* Merge pull request joho#4 from GoIncremental/4-windows-line-returns (John Barton)
* fixup (David Bochenski)
* Fix remaining failing test on windows (David Bochenski)
* Closes joho#4 Use bufio.Scanner to read newLines (David Bochenski)
* Merge pull request joho#3 from ys/feature/accept-equals-in-values (John Barton)
* Use SplitN instead of split (Yannick Schutz)
* Merge pull request joho#2 from mattn/seveal_equals (John Barton)
* FOO=BAR= should be "FOO" = "BAR=" (mattn)
* add godotenv.Read() which returns a map rather than calling os.Setenv (John Barton (joho))
* Merge pull request joho#1 from wolfeidau/readme_corrections (John Barton)
* Small correction to code in the README. (Mark Wolfe)
* Fix the autoload package. (John Barton (joho))
* Do more of the documenting. (John Barton (joho))
* Turns out there was an easier way to read the env file. (John Barton (joho))
* Add the ability to autoload the env file when you import. (John Barton (joho))
* Write up something for "go doc" (John Barton (joho))
* Update readme (John Barton (joho))
* Make sure we don't overwrite existing ENV vars. (John Barton (joho))
* That is a syntax lol. (John Barton (joho))
* Love me some build badges. (John Barton (joho))
* Borrow some of dotenv's readme (John Barton (joho))
* Licence and more readme (John Barton (joho))
* Readme with build status. (John Barton (joho))
* Add wercker.yml for CI (John Barton (joho))
* Make Load() without args open .env by default (John Barton (joho))
* Get the code running against all fixtures. (John Barton (joho))
* Clear the env at the start of each integration test. (John Barton (joho))
* Ignore comment lines and lines full o' whitespace. (John Barton (joho))
* Add some more tests. (John Barton (joho))
* Handle quoted hashes "properly" (John Barton (joho))
* Red, green, rinse repeat. (John Barton (joho))
* World's most naive comment parser... (John Barton (joho))
* Start trying to do comments/quoting properly. (John Barton (joho))
* Mark out the rest of my todo list in the test file. (John Barton (joho))
* export keyword parsing (John Barton (joho))
* Yaml style bro. (John Barton (joho))
* Move the red-green a little way down the existing parser specs. (John Barton (joho))
* Start porting over parser tests. (John Barton (joho))
* Extract a test helper (John Barton (joho))
* Get the basic tests green. (John Barton (joho))
* First failing tests extracted from dotenv (John Barton (joho))
* Macs are dumb. (John Barton (joho))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants