diff options
author | MITSUNARI Shigeo <[email protected]> | 2021-03-04 17:21:43 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2021-03-04 17:21:43 +0900 |
commit | 396715a894a18d3809890cff585e3214fbc24f39 (patch) | |
tree | fad2ede142d9c2f86da69ee78157cdff04845052 /.github | |
parent | 69a25fd929c846d6fb70bf945223a9e883ae8548 (diff) | |
download | xbyak-396715a894a18d3809890cff585e3214fbc24f39.tar.gz xbyak-396715a894a18d3809890cff585e3214fbc24f39.zip |
use github action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3fad142 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: test +on: [push] + +jobs: + build: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: sudo apt install nasm yasm g++-multilib tcsh + - run: make test |