Update CI.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
test_schedule: | |
name: Test schedule | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up Julia" | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1.10' | |
- name: "Install Jupyter" | |
run: pip3 install notebook | |
- name: "Install julia pre-requisites" | |
run: | | |
julia -e ' | |
using Pkg | |
Pkg.add("IJulia") | |
Pkg.add("Oscar") | |
Pkg.add("BenchmarkTools") | |
Pkg.add("GraphRecipes") | |
Pkg.add("Graphs") | |
Pkg.add("Interact") | |
Pkg.add("Plots")' | |
- name: "Run python script" | |
run: python3 scraper.py |