Skip to content

Commit

Permalink
Merge pull request #2 from alexjercan/feature/add-ci
Browse files Browse the repository at this point in the history
Create tests.yml
  • Loading branch information
alexjercan authored Apr 4, 2024
2 parents c45e49d + e3f65ff commit bc53051
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run Tests

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
version: latest
platform: x64
- name: Set up Fasm
uses: stevenwdv/setup-fasm@v1
- name: Run tests
run: ./checker.sh

0 comments on commit bc53051

Please sign in to comment.