Updating to 126.0.6475.1_12.6.217 definitions #149
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Build | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- name: Install Packages | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get install -y build-essential | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
go build ./... |