fix Crystal nightly

test Crystal nightly and macOS
master
Anton Maminov 2021-09-01 13:44:44 +03:00
parent 248c3575dd
commit 53486f8277
2 changed files with 7 additions and 2 deletions

View File

@ -20,7 +20,12 @@ jobs:
test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
matrix:
include:
- {os: ubuntu-latest, crystal: latest}
- {os: ubuntu-latest, crystal: nightly}
- {os: macos-latest}
runs-on: ${{ matrix.os }}
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1

View File

@ -11,7 +11,7 @@ class ::HTTP::Cookie
@expires : Time? = nil, @domain : String? = nil,
@secure : Bool = false, @http_only : Bool = false,
@samesite : SameSite? = nil, @extension : String? = nil,
@origin : String? = nil)
@origin : String? = nil, @creation_time = Time.utc)
validate_name(name)
@name = name
validate_value(value)