Update actions and run on both supported Go versions

[skip cd]
This commit is contained in:
Tulir Asokan 2023-12-28 17:03:21 +01:00
parent 7b3990dab9
commit cb6afe2e82

View file

@ -5,13 +5,19 @@ on: [push, pull_request]
jobs: jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ["1.20", "1.21"]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v3 uses: actions/setup-go@v5
with: with:
go-version: "1.21" go-version: ${{ matrix.go-version }}
cache: true
- name: Install libolm - name: Install libolm
run: sudo apt-get install libolm-dev libolm3 run: sudo apt-get install libolm-dev libolm3