Skip to content

Commit

Permalink
ci: create base pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Pinjasaur authored Jul 21, 2024
1 parent 69519ca commit 21a2bf5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0']

steps:
- uses: actions/checkout@v4
- name: Setup
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- run: gem install sass
- run: chmod +x test/smoketest.rb
- name: Smoketest
run: test/smoketest.rb

0 comments on commit 21a2bf5

Please sign in to comment.