File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99jobs :
1010 test :
11- name : test -${{ matrix.deno-version }}-${{ matrix.unstable && 'unstable' || 'stable' }}
11+ name : build -${{ matrix.deno-version == 'nightly' && 'nightly' || 'release' }}-${{ matrix.unstable && 'unstable' || 'stable' }}-${{ matrix.no-check && 'nocheck' || 'tsc ' }}
1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- deno-version : [v1.3.3 , nightly]
15+ deno-version : [v1.4.0 , nightly]
1616 unstable : [false, true]
17+ no-check : [false, true]
1718 env :
1819 AWS_ACCESS_KEY_ID : AKIAIOSFODNN7EXAMPLE
1920 AWS_SECRET_ACCESS_KEY : wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
3738 aws --endpoint-url "http://localhost:9000" s3 mb s3://test
3839
3940 - name : Test
40- run : deno test --allow-net --allow-env ${{ matrix.unstable && '--unstable' || '' }}
41+ run : deno test --allow-net --allow-env${{ matrix.unstable && ' --unstable' || '' }}${{ matrix.no-check && ' --no-check ' || '' }}
Original file line number Diff line number Diff line change 1- export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@0.1.0 /mod.ts" ;
2- import { createHash } from "https://deno.land/std@0.68 .0/hash/mod.ts" ;
1+ export { AWSSignerV4 } from "https://deno.land/x/aws_sign_v4@0.1.1 /mod.ts" ;
2+ import { createHash } from "https://deno.land/std@0.69 .0/hash/mod.ts" ;
33export function sha256Hex ( data : string | Uint8Array ) : string {
44 const hasher = createHash ( "sha256" ) ;
55 hasher . update ( data ) ;
Original file line number Diff line number Diff line change 11import { AWSSignerV4 , sha256Hex } from "../deps.ts" ;
2- import { S3Config } from "./client.ts" ;
2+ import type { S3Config } from "./client.ts" ;
33import type {
44 GetObjectOptions ,
55 PutObjectOptions ,
Original file line number Diff line number Diff line change 22 assert ,
33 assertEquals ,
44 assertThrowsAsync ,
5- } from "https://deno.land/std@0.68 .0/testing/asserts.ts" ;
5+ } from "https://deno.land/std@0.69 .0/testing/asserts.ts" ;
You can’t perform that action at this time.
0 commit comments