Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Migrate to github actions (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
stof authored Jan 27, 2021
1 parent fce11cb commit df6ac8c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
branches: [master, feature.*]
tags: ['**']
pull_request:

jobs:
dart_tests:
name: "Validate proto"
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v2
- uses: arduino/setup-protoc@v1
with: { version: "3.x", repo-token: "${{ github.token }}" }
- name: Generate protobuf code
run: protoc --js_out=/tmp embedded_sass.proto

16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit df6ac8c

Please sign in to comment.