Updating to 127.0.6499.4_12.7.122 definitions #151
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 ./... |