Skip to content

Commit bfcf5b5

Browse files
authored
Move repo to GitHub Actions (#72)
We've moved away from Semaphore for most repositories. Let's move this one as well. It's browning it out old images we rely on.
1 parent a9149a6 commit bfcf5b5

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

.github/workflows/validate.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Public config validation
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
10+
11+
jobs:
12+
validate:
13+
name: Validate
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
20+
- name: Set up Ruby
21+
uses: ruby/setup-ruby@v1
22+
with:
23+
ruby-version: "3.3"
24+
25+
- name: Validate
26+
run: rake validate

.semaphore/semaphore.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)