Skip to content

Remove NodeJS from the README as well #27

Remove NodeJS from the README as well

Remove NodeJS from the README as well #27

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- id: version
run: |
echo -n "version=" >> "$GITHUB_OUTPUT"
git describe >> "$GITHUB_OUTPUT"
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Install sassc
run: |
sudo apt-get install sassc
- name: Build
run: go run build.go -version "${{steps.version.outputs.version}}"
- name: Test
run: go test -v -short ./...