Skip to content

Issue 33 deflate limit #4

Issue 33 deflate limit

Issue 33 deflate limit #4

Workflow file for this run

name: Build and test jose2go project
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-and-test:
runs-on: ${{ windows-latest, ubuntu-latest, macos-latest }}

Check failure on line 12 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / Build and test jose2go project

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 12, Col: 14): Unrecognized named-value: 'windows-latest'. Located at position 1 within expression: windows-latest, ubuntu-latest, macos-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
version: ['1.20', '1.21', '1.22']
steps:
- name: Checkout library sources
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...