Skip to content

Commit

Permalink
refactor(ci): add schedule tests and latest binary download (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
GImbrailo authored Aug 30, 2022
1 parent e033aed commit ff93716
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/action-tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
---
name: Action tests

on: [push]
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 0 * * *'


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV DENO_DIR=/deno
COPY --from=docker:dind /usr/local/bin/docker /bin/docker

# Download the Taqueria release binary for Linux to /bin/taq
ADD https://github.com/ecadlabs/taqueria/releases/download/v0.12.0/taq-linux /bin/taq
ADD https://github.com/ecadlabs/taqueria/releases/latest/download/taq-linux /bin/taq

# Make the binary executable
RUN chmod +x /bin/taq
Expand Down

0 comments on commit ff93716

Please sign in to comment.