Skip to content

Commit e643e4d

Browse files
committed
Fix CI pathing
1 parent 8e07711 commit e643e4d

2 files changed

Lines changed: 9 additions & 11 deletions

File tree

.github/workflows/main.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@ name: main
22

33
on:
44
push:
5-
branches: ['**']
5+
branches: ["**"]
66

77
jobs:
88
main:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- name: Checkout repository
13-
uses: actions/checkout@v4
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
1414

15-
- name: Set up Go 1.19+
16-
uses: actions/setup-go@v4
17-
with:
18-
go-version: '>=1.19'
15+
- name: Set up Go 1.19+
16+
uses: actions/setup-go@v4
17+
with:
18+
go-version: ">=1.19"
1919

20-
# Linux workshop
21-
- name: CI
22-
run: 'cd ./linux && bash ./scripts/ci.sh'
20+
- name: CI
21+
run: "bash ./scripts/ci.sh"

terraform/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ variable "custom_security_group_ingress" {
1919
variable "event_name" {
2020
description = "Name of the event that the workshop is being run for, e.g. 'STL-Public-Library-Hackathon'"
2121
type = string
22-
default = "testing"
2322
}
2423

2524
variable "num_teams" {

0 commit comments

Comments
 (0)