Skip to content

Commit

Permalink
CI añadida con github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheComputerCat committed Nov 14, 2023
1 parent 5cd6769 commit 163d6e3
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: Run automated tests

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


jobs:
run-tests:
runs-on: ubuntu-latest

strategy:
matrix:
go: [ '1.21.4' ]

steps:
- name: Check out the repo
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: install project dependencies
run: make install-dependencies
- name: generate parsing files
run: make generate-parsing-files
- name: run tests
run: make run-tests-ci

0 comments on commit 163d6e3

Please # to comment.